Jquery 追加在 ie 中不起作用

发布于 2024-12-04 04:06:39 字数 272 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

め可乐爱微笑 2024-12-11 04:06:39

尝试使用 .parents(...) 而不是 .parent(...)

Try using .parents(...) instead of .parent(...)

旧夏天 2024-12-11 04:06:39

通过您给我们的代码,我创建了一个 小提琴演示 代码期望的内容html 的外观以及它的工作原理,请告诉我这是否可以帮助您解决

HTML

<div class="click">
    <div id="start-chat">start chat</div>
</div>

和代码问题

$('#start-chat').live("click",function(){
    $(this).parent('.click').append('<div id="forclick">some data inside it</div>');
});

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

<div class="click">
    <div id="start-chat">start chat</div>
</div>

and your code

$('#start-chat').live("click",function(){
    $(this).parent('.click').append('<div id="forclick">some data inside it</div>');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文