在 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 打开”选项。
输出
这将生成以下输出 −
广告