Jquery 例外被抛出且未被接住原因介绍_jquery
程序员文章站
2022-05-20 19:45:11
...
这个肯定是js代码写错的问题,仔细检查。
譬如我就是
$(this).find("td").eq(9).find("select").eq(0).removeAttr("asd");
$(this).find("td").eq(9).find("select").eq(0).attr("asd", i);
中
find("select")写成了find(":select");
譬如我就是
复制代码 代码如下:
$(this).find("td").eq(9).find("select").eq(0).removeAttr("asd");
$(this).find("td").eq(9).find("select").eq(0).attr("asd", i);
中
复制代码 代码如下:
find("select")写成了find(":select");
下一篇: PHP如何获取客户端ip地址