我有這樣的一個js文件:對象沒有方法(jQuery的)
$(document).ready(function(e){
jQuery.fn.SaveAdd = function(titulo,contenido,tags) {
// code
}
});
我進口JS的HTML文檔,我調用的函數:
$(document).ready(function(){
$("#iSave").click(function(){
// declaration of vars instead of this line
$(this).SaveAdd(title,content,tags);
});
});
和我有錯誤:沒有SaveAdd方法。但是當u使用這樣的:
$(document).ready(function(){
// declaration of vars instead of this line
$(this).SaveAdd(title,content,tags);
});
功能正確地運行:■我不知道什麼是錯的...
你想創建一個jQuery插件嗎? – 2013-02-10 12:25:36
當DOM準備就緒時,您正在定義插件。你應該閱讀關於插件創作這裏> http://docs.jquery.com/Plugins/Authoring – BenM 2013-02-10 12:26:14