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.
我有一个按钮:
<input type="button" value="Browse Server" class="button">
我想使用 jQuery 隐藏这个按钮,或者只是给他分配一些 CSS 并通过 CSS 样式表隐藏它。我想我必须使用.val(),但是如何搜索所有 html 文档以查找值为“浏览服务器”的输入元素?
.val()
提前致谢。
这应该有效:
$('input[value="Browse Server"]').hide();