在內聯元素中使用從javascript打包的打印文本進行樣式設計是否是不好的做法?如果是這樣,什麼樣的JavaScript打印文本的樣式適當的方式?爲了樣式的目的,在內聯元素中使用encase javascript會是一個糟糕的做法嗎?
例:
<script>
function produceMessage(){
var msg= 'This should print';
return msg;
}
</script>
<span style="color:red">script>
document.write(produceMessage());
</script></span>
編輯:Changed document.body.appendChild(document.createTextNode(produceMessage()));
到d ocument.write(produceMessage());
再次感謝昆汀,非常有幫助 – user784637