HTML:
<div id="test"></div>
如果你不单单想让div之间是null,而是想动态添加空格的话,这样(jquery):
$("#id").innerHTML += "&nbsp"
就好了
Hope It useful to You and Yous!
<SCRIPT LANGUAGE="JavaScript">
<!--
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "")
}
String.prototype.LTrim = function()
{
return this.replace(/(^\s*)/g, "")
}
String.prototype.RTrim = function()
{
return this.replace(/(\s*$)/g, "")
}
//-->
</SCRIPT>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)