经过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。