我使用简单的警报选项创建jquery插件。我这样做,看下面是我的代码。但它不起作用。 下面的代码是单独的js文件。
(function($) {
$.fn.gettingmessage = function() {
var element = this;
$(element).load(function() {
alertingcontent();
function preventnextpage() {
return false;
}
function alertingcontent() {
alert("nicely done");
});
};
})(jQuery);
我将此功能称为 这样
$(function(){
$("body").gettingmessage();
});
我不知道如何解决这个问题,任何建议都会很棒。 的 JSFIDDLE
由于
答案 0 :(得分:5)
更新的代码:
(function($) {
$.fn.gettingmessage = function() {
var element = this;
$(element).ready(function() {
alertingcontent();
function preventnextpage() {
return false;
}
function alertingcontent() {
alert("nicely done");
}
});
};
})(jQuery);
$(function(){
$("body").gettingmessage();
});