stu_usst 发表于 2015-7-23 17:03:00

代码复制没有效果的问题

在oil Table 文件中,有;两个网页文件,
<script type="text/javascript">
         window.onload = function ()
         {
               changeBorder();
         }
         function changeBorder()
         {
               var tdCollections = document.getElementsByTagName("td");
               for (var i = 0; i < tdCollections.length; i++)
               {
                   if (tdCollections.attributes["locked"] != null &amp;&amp; tdCollections.attributes["locked"].value == "true")
                   {
                     if (tdCollections.parentNode.rowIndex == (tdCollections.parentNode.parentNode.childElementCount - 1))
                     {
                           tdCollections.style.borderBottomColor = "WindowText";
                           tdCollections.style.borderBottomWidth = "3px";
                     }
                     if (tdCollections.cellIndex == (tdCollections.parentNode.childElementCount - 1))
                     {
                           tdCollections.style.borderRightColor = "WindowText";
                           tdCollections.style.borderRightWidth = "3px";
                     }
                     else
                     {
                           tdCollections.style.borderRightColor = "gray";
                     }
                   }
               }
         }
    </script>
在oiltable中有用,而在放在oiltable.aspx中没有效果呢!
   var tdCollections = document.getElementsByTagName("td");中的td为名的标签在哪里呢?
亲,以后你们给我编的代码能注解一下更好

stu_usst 发表于 2015-7-23 17:43:00

回复 1楼stu_usst的帖子

已经改好了,谢谢

iceman 发表于 2015-7-23 17:49:00

回复 2楼stu_usst的帖子

:hjyzw:真棒
页: [1]
查看完整版本: 代码复制没有效果的问题