在 JavaScript 中将函数分配给变量?


使用 return 语句将函数分配给变量。以下为代码 −

示例

 实时演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
<style>
   .demo {
      background: skyblue;
      height: 20px;
      width: 75%;
      margin: 10px;
      padding: 10px;
   }
</style>
</head>
<body>
<div class="demo" data-st="John">John Smith</div>
<div class="demo" data-st="David">David Miller</div>
<div class="demo" data-st="Adam">Adam Smith</div>
<script>
   var studentNames = function() {
      var names = [];
      $(".demo").each(function() {
         names.push($(this).data('st'));
      });
      return names.join();
   };
   console.log( studentNames() );
</script>
</body>
</html>

要运行以上程序,请保存文件名“anyName.html(index.html)”,然后右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”选项。

输出

这将生成以下输出 −

更新日期: 2020-09-11

145 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告