2
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)}
4

1 回答 1

3

由于您似乎是动态附加元素,所以请尝试.onping 点击事件:

http://api.jquery.com/on/

如果我错过了什么,请让我知道!

脚本

 <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>

代码

$('#regbtn').on('click',function(){
                alert('ok');
            });

或者

   $(document).on('click','#regbtn',function(){
                    alert('ok');
                });
于 2012-08-26T22:08:09.393 回答