我的功能很小。脏..
if(defaults["debug"] == true){ $('#get_debug').append(url + "<br />"); }
是否可以写下类似的内容。
$('#get_debug').ifdebug.append(url + "<br />");
由于
答案 0 :(得分:0)
不明白为什么会这样,但确定可能
$.fn.ifdebug = function() {
return defaults["debug"] == true ? this : $();
}
然后你可以做
$('#get_debug').ifdebug().append(url + "<br />"); }