我写了一段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<1000;i++){
$('table> tbody > tr:nth-child(' + i + ') > td > table').each(function() {
$(this).hide();
});
}
}); </script>
我试图使用&#34; unescape&#34;功能,但似乎没有效果。