xxxxxxxxxx
//在当前页面内追加换行标签和指定的HTML内容
function w( html ){
document.body.innerHTML += "<br/>" + html;
}
var str = "Google搜索引擎";
w( str.bold() ); // <b>Google搜索引擎</b>
str = "CodePlayer";
w( str.bold() ); // <b>CodePlayer</b>