show('<div class="alignLeft"><div id="ownerinfo"></div><br /><h3>Where will the document go?</h3><select id="dest"><option value="">-- select destination --</option><option>'+this.DESTINATIONS.join('</option><option>')+'</option></select><h3>Notes</h3><input type="text" id="notes" size="70" /><p><button id="regbtn">Register</button></p></div>','append',function(){
$('#regbtn').click(function(){
alert('ok');
});
alert($('#regbtn').click);
});
以上是代码。show()
只是一个添加动画但在动画之后执行第三个参数的函数。它与其他功能一起使用。但是,问题出在$('#regbtn').click()
-> 我似乎无法绑定它。这里可能是什么问题?
我希望即使我不上传整个代码,您也可以帮助我弄清楚。当我提醒 时.click
,这是输出:
function (a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)}