function getObjInnerText(obj){
  if (document.all) { // IE;
    return obj.innerText;
  }
  else{
    if (obj.text)
    {
      return obj.text;
    }
    else
      alert("Error: This application does not support your browser.  Try again using IE or Firefox.");
  }
}

相关文章:

  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2021-12-17
  • 2021-08-02
  • 2022-12-23
  • 2022-01-02
  • 2021-07-02
猜你喜欢
  • 2021-10-14
  • 2021-09-10
  • 2022-02-04
  • 2021-12-19
  • 2022-12-23
  • 2021-09-10
相关资源
相似解决方案