Jquery 按宽度选择器

发布于 2024-10-03 21:05:39 字数 34 浏览 3 评论 0原文

是否可以选择具有特定宽度的表格?

谢谢

Would it be possible to select a table with a specific width ?

Thanks

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

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

发布评论

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

评论(3

奢华的一滴泪 2024-10-10 21:05:39

使用 filter() 函数:

$('table').filter(function() {
    return $(this).width() > 700;
});

Use the filter() function:

$('table').filter(function() {
    return $(this).width() > 700;
});
薄荷梦 2024-10-10 21:05:39

是的,就像这样:

$('table[width="700"]')

或者您可以获取具有任何宽度的所有表格,如下所示:

$('table[width]')

Yes like this:

$('table[width="700"]')

Or you can get all tables having width with whatever value like this:

$('table[width]')
成熟的代价 2024-10-10 21:05:39

或者创建您自己的选择器

$.expr[':'].atLeast700px = function(obj){
  return $(obj).width() >= 700;
};


$('table:atLeast700px');  // returns all your tables 700px or wider

Or create your own selector

$.expr[':'].atLeast700px = function(obj){
  return $(obj).width() >= 700;
};


$('table:atLeast700px');  // returns all your tables 700px or wider
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文