如何使用 jQuery $.getScript() 方法包含多个 JS 文件?
要使用多个 js 文件,请使用与添加单个 js 文件相同的 getScript()。我们有如下代码段的 result.js 文件 −
function CheckJS(){ alert("This is JavaScript - File1"); }
我们有如下代码段的 result2.js 文件 −
function CheckJS(){ alert("This is JavaScript – File2"); }
示例
下面是添加多个 js 文件的代码段。在此,我们将调用以上 2 个 js 文件中的函数 −
<head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("#button1").click(function(event){ $.getScript('result.js', function(jd) { // Call custom function defined in script 1 CheckJS(); }); }); $("#button2").click(function(event){ $.getScript('result2.js', function(jd) { // Call custom function defined in script 2 CheckJS(); }); }); }); </script> </head> <body> <p>Click on the button to load result.js file −</p> <div id = "stage" style = "background-color:cc0;"> STAGE </div> <input type = "button" id = "button1" value = "Load Data" /> <input type = "button" id = "button2" value = "Load 2 Data" /> </body>
广告