日期:2014-05-19  浏览次数:20475 次

用javascript代码怎样实现加入一个空格?对于下面的例子:
我想在“中国”和“美国”之间加入一个空格,用下面的方法实现不了:

document.write( "中国 ")+ "&nbsp "+document.write( "美国 ")

document.write( "中国 ")+ " <&nbsp> "+document.write( "美国 ")

document.write( "中国 ")+ "   "+document.write( "美国 ")   //直接键入空格

上面的方法显示的都是:   中国美国   (“中国”和“美国”之间没有空格,紧连着的)

怎么办呢?

------解决方案--------------------
document.write( "中国&nbsp;美国 ");
------解决方案--------------------
document.write( "中国 " + "&nbsp; " + "美国 ");
document.write( "中国 " + " " + "美国 ");