var mystr="我爱"; var mychar="祖国"; document.write=(mystr+mychar);这样对吗!???
字符串可以相加,但是你的写法有错误。应该这样:
document.write(mystr+mychar);
我觉得可以?