我在一个 js 文件中有这个:
$(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。但是当你使用这个时:
$(document).ready(function(){
// declaration of vars instead of this line
$(this).SaveAdd(title,content,tags);
});
该功能运行正常:S 我不知道出了什么问题...