
























编辑器加载中...
/// 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;
}
}
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。