由应用程序编码的unescape jquery

时间:2016-12-06 19:53:01

标签: jquery html

我写了一段Jquery来隐藏HTML页面上的某些表格。工作正常,但我使用的应用程序转义Jquery中的标签导致它无法正常工作。你能救我吗?

Jquery的:

$(document).ready(function() {
for (var i=2;i<1000;i++){
       $('table > tbody > tr:nth-child(' + i + ') > td > table').each(function() {      
            $(this).hide(); 
            });
         }
     });

生成表单后应用程序生成的代码:

<script> $(document).ready(function() {
for (var i=2;i&lt;1000;i++){

           $(&#39;table&gt; tbody &gt; tr:nth-child(&#39; + i + &#39;) &gt; td &gt; table&#39;).each(function() {  

    $(this).hide(); 
                          });
                  }
           }); </script>

我试图使用&#34; unescape&#34;功能,但似乎没有效果。

0 个答案:

没有答案