摘要:
编辑器加载中.../// help set the text of the element, based on the browser.function setTextofElement(textControl, textValue) { // innerText only supported in IE if (document.body.innerText) { textControl.innerText = textValue; } else // other browsers use textContent { textControl.textContent = textValue; 阅读全文
posted @ 2011-07-20 16:08 Snapping 阅读(137) 评论(0) 推荐(0) 编辑