document.Consumer.lbRules.innerText="hello";

解决方案 »

  1.   

    脚本错误提示是:
    document.Consumer.lbRules为空或不是对象
      

  2.   

    去掉document试一试,应该就不会有脚本错误的提示了。
      

  3.   

    document.all("lbRules").innerText="hello";
      

  4.   

    document.all("lbRules").innerText="hello";
    已经可以执行出来了但是为什么document.all("lbRules").innerHtml="hello";不行?也是没有反应<DIV id="lbRules" style="DISPLAY: inline; WIDTH: 715px; HEIGHT: 15px" align="left" ms_positioning="FlowLayout" dataFormatAs="html"></DIV>
      

  5.   

    document.all("lbRules").innerHTML="hello";
      

  6.   

    我想实现在div上实现<br>换行
      

  7.   

    document.all("lbRules").innerHTML="hello";原来还要区分大小写
    谢谢大家了^_^