Jquery 追加在 ie 中不起作用
我正在使用 jquery 附加 div onclick 事件,但它在 ie 中不起作用,尽管它在 firefox、chrome 和 safari 中工作正常,这是我的代码
$('#start-chat').live("click",function(){
$(this).parent('.click').append('<div id="forclick">some data inside it</div>');
});
谢谢
I am using jquery to append div onclick event but it is not working in ie at though it is working fine is firefox , chrome and safari here is my code
$('#start-chat').live("click",function(){
$(this).parent('.click').append('<div id="forclick">some data inside it</div>');
});
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
.parents(...)
而不是.parent(...)
Try using
.parents(...)
instead of.parent(...)
通过您给我们的代码,我创建了一个 小提琴演示 代码期望的内容html 的外观以及它的工作原理,请告诉我这是否可以帮助您解决
HTML
和代码问题
by way of the code you have given us I created a fiddle demo of what the the code is expecting the html to look like and how this would work let me know if that helps you out
HTML
and your code