xxxxxxxxxx
//在当前页面内追加换行标签和指定的HTML内容
function w( html ){
document.body.innerHTML += "<br/>" + html;
}
/* str1.concat(str2) 相当于 str1 + str2 */
var str = "CodePlayer";
str = str.concat(",http://www.365mini.com");
w( str ); // CodePlayer,http://www.365mini.com
str += ",Play";
w( str ); // CodePlayer,http://www.365mini.com,Play
str = str.concat(",a", ",b", true);
w( str ); // CodePlayer,http://www.365mini.com,Play,a,btrue