jquery添加元素 元素的id是变量
$("button").click(function(){varmath1=Math.random();$("<div></div>").attr('id',math1)...
$("button").click(function(){
var math1=Math.random();
$("<div></div>").attr('id',math1).css({'width':'200px','height':'200px','position':'absolute','backgroundColor':'#666','float':'left','left':'500px'}).appendTo('body')
var math2=Math.random()
$("<span></span>").attr('id',math2).css({'width':'200px','height':'30px','backgroundColor':'red','display':'inline-block'}).appendTo($('#'+math1)) 展开
var math1=Math.random();
$("<div></div>").attr('id',math1).css({'width':'200px','height':'200px','position':'absolute','backgroundColor':'#666','float':'left','left':'500px'}).appendTo('body')
var math2=Math.random()
$("<span></span>").attr('id',math2).css({'width':'200px','height':'30px','backgroundColor':'red','display':'inline-block'}).appendTo($('#'+math1)) 展开
2个回答
展开全部
$("button").click(function(){
var math1=Math.random();
var math2=Math.random();
var body=$('body');
var div='<div id="'+math1+'"></div>';
var span='<span id="'+math2+'"></span>';
div.append(span);
body.append(div);
}
样式还是重写一下吧。都不知道写的啥。
var math1=Math.random();
var math2=Math.random();
var body=$('body');
var div='<div id="'+math1+'"></div>';
var span='<span id="'+math2+'"></span>';
div.append(span);
body.append(div);
}
样式还是重写一下吧。都不知道写的啥。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询