I've got 2 ways I can create a <div>
using jQuery
.(我有两种方法可以使用jQuery
创建一个<div>
。)
Either:(或者:)
var div = $("<div></div>");
$("#box").append(div);
Or:(要么:)
$("#box").append("<div></div>");
What are the drawbacks of using second way other than re-usability?(使用除可重用性之外的第二种方式有什么缺点?)
ask by Ashwin translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…