jQuery Lint 错误

发布于 2024-10-21 11:13:48 字数 388 浏览 2 评论 0原文

我在 Firebug 插件中发现了 jQuery Lint。然而,其结果令人困惑,并且很难尝试并令人满意。我收到数百个错误,提示 jQuery (...) 调用不正确

例如,这一行会出现该警告。我在这里做错了什么?

$('#myTextBox').val(someValue);

当我尝试从没有行的 tbody 中删除所有行时,它会抛出一个错误,停止页面上的所有 JavaScript。它说该选择器没有找到任何元素,然后删除不是一个函数。

$('#myTbody > tr').remove();

我真的需要添加额外的代码来解决这个问题吗? jQuery Lint 有何用处?

I found out about jQuery Lint in the Firebug plugin. However its results are confusing and very hard to try and satisfy. I get hundreds of errors saying jQuery (...) called incorrectly.

For example this line comes up with that warning. What am i doing wrong here?

$('#myTextBox').val(someValue);

And when i try to remove all the rows from a tbody that has no rows it throws an error that stops all javascript on the page. It says no elements were found with that selector and then that remove is not a function.

$('#myTbody > tr').remove();

Do i really have to add extra code to work around this? How is jQuery Lint meant to be helpful?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ偶尔ゞ 2024-10-28 11:13:48

这里我做了一个简单的例子: jsfiddle.net/DJzFe/

在那里你会看到如果您使用 jQuery 1.4.4,您的 2 行代码不会在 jQuery Lint 上发出警告, 但我怀疑您使用的是尚未经过 jQuery Lint 测试的 jQuery 1.5.1然而 (仅在 1.3.2 和 1.4 上进行了测试.4)。在 1.5.1 中,该语句将发出警告,如您所描述的:jQuery(...) 调用不正确

Here I made a simple example: jsfiddle.net/DJzFe/

There you will see that your 2 lines of code does not warn on jQuery Lint if you use jQuery 1.4.4, but I suspect that you are using jQuery 1.5.1 which hasn't been tested by jQuery Lint yet (it has been tested only with 1.3.2 and 1.4.4). And in 1.5.1 that statements will warn as you described: jQuery(...) called incorrectly

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文