如何使用多个文件拆分 JQUERY 或在一个文件中访问变量
文件1.js
jQuery(document).ready(function($) {
var a='Ram';
});
文件2.js
jQuery(document).ready(function($) {
console.log(a);
});
html中包含顺序,file1.js file2.js
它不工作,我想让它工作,我该怎么做。
如何使用多个文件拆分 JQUERY 或在一个文件中访问变量
文件1.js
jQuery(document).ready(function($) {
var a='Ram';
});
文件2.js
jQuery(document).ready(function($) {
console.log(a);
});
html中包含顺序,file1.js file2.js
它不工作,我想让它工作,我该怎么做。