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

设置控件text(兼容浏览器)

Posted on 2011-07-20 16:08  Snapping  阅读(137)  评论(0编辑  收藏  举报

编辑器加载中...

/// 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;
    }
}