我正在编写一个简单的 jquery 库,其中包含我经常使用的所有功能以及电子邮件验证等。如何运行 inti 文档不起作用。
var scriptName = {
init: function() {
alert('working');
},
}
//This is not working!!!!
$( document ).ready(function() {
init();
});
我正在编写一个简单的 jquery 库,其中包含我经常使用的所有功能以及电子邮件验证等。如何运行 inti 文档不起作用。
var scriptName = {
init: function() {
alert('working');
},
}
//This is not working!!!!
$( document ).ready(function() {
init();
});
运行它scriptName.init();
你的代码:http: //jsfiddle.net/KTeLR/
var scriptName = {
init: function() {
alert('working');
}
};
//This is working!!!!
$(document).ready(function() {
scriptName.init();
});