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

前端之家收集整理的这篇文章主要介绍了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并能够操纵它们的想法?

谢谢!

解决方法

@H_502_21@ 这只是错误的订单
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.f2er.com/jquery/181656.html

猜你在找的jQuery相关文章