带变量的 jQuery 选择器

发布于 2024-10-01 00:49:06 字数 205 浏览 2 评论 0原文

我需要使用 jQuery 选择文件名包含特定字符串(变量)的所有图像。我正在使用:
var str='-out.';
$('img[src*='+str+']'). //do some

它可以工作,但会在 Firefox 中引发以下警告:“预期 ']' 终止属性选择器,但发现 '.' “有人知道如何避免这个警告吗?

谢谢

I need to select all images whose filename contain a certain string (variable) using jQuery. I am using:
var str='-out.';
$('img[src*='+str+']'). //do something

It works but fires the following warning in Firefox: " Expected ']' to terminate attribute selector but found '.' " Would someone know how to avoid this warning ?

Thank You

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

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

发布评论

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

评论(2

一页 2024-10-08 00:49:06

我认为您需要将属性值用双引号或单引号引起来。

查看 Jquery 文档中的 attr*="value" 选择器,

如下所示:

$("img[src*='"+str+"']")

$('img[src*="'+str+'"]')

I think you need double quotes or single around the attribute value.

Look at Jquery Docs for attr*="value" selector

like this:

$("img[src*='"+str+"']")

OR

$('img[src*="'+str+'"]')
清引 2024-10-08 00:49:06

我尝试下面的代码,Firefox 不会发出任何警告(它按方面工作)?

   var str=".png";
    $('img[src*='+str+']').each(function(){
      console.info(this.alt);
    });

I try the following code and firefox doesn't fires any warning (it works as aspected)?

   var str=".png";
    $('img[src*='+str+']').each(function(){
      console.info(this.alt);
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文