微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery将div内的div附加到id并操作

经过2个小时的搜索,我决定问我的问题。

我有一个div:

<div id="Box"></div>

我想使用jquery在上面的div中添加一个div。

我试过(以下代码函数内):

var e = $('<div style="display:block; float:left;width:'+width+'px; height:'+height+'px; margin-top:'+positionY+'px;margin-left:'+positionX+'px;border:1px dashed #CCCCCC;"></div>');
$('div',e).attr('id','myid');
$("#Box").append(e);

但访问$(“#myid”)不工作。

任何关于如何在div中添加div并能够操纵它们的想法?

谢谢!

解决方法

这只是错误的订单
var e = $('<div style="display:block; float:left;width:'+width+'px; height:'+height+'px; margin-top:'+positionY+'px;margin-left:'+positionX+'px;border:1px dashed #CCCCCC;"></div>');
$('#Box').append(e);    
e.attr('id','myid');

先附加,然后访问/设置attr。

原文地址:https://www.jb51.cc/jquery/181656.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐