Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何使用 src 文件定位以下 img?
<img src="left1.gif" alt="" />
$('img[src=left1.gif]').hide();不工作
$('img[src=left1.gif]').hide();
您需要在选择器中的 src 的字符串值周围加上引号。这有助于解决特殊字符的歧义,并且似乎适用.于文件名中的 。
.
$("img[src='left1.gif']").hide();
您的 HTML 显示 l e ft1.gif,但您的 jQuery 显示 l i ft1.gif。还要注意围绕我的价值的引号: