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。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...