博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年7月20日

摘要: 编辑器加载中.../// 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) 编辑