按值查找隐藏字段?

发布于 2024-10-15 17:46:03 字数 194 浏览 2 评论 0原文

嗨,

如何按值(而不是 ID)查找隐藏字段?我知道我可以通过以下方式获取值:

$('#MyHiddenField').val();

但是在这种情况下,我需要通过 val 找到该字段,然后清除它。

请帮忙!

Hi,

How do I find a hidden field by value(not id)? I known that I can get value by the following :

$('#MyHiddenField').val();

But In this case I need to find the field by val and then clear it.

Pleas help!

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

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

发布评论

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

评论(2

萌能量女王 2024-10-22 17:46:03

您可以使用属性选择器

$('input:hidden[value="..."]')

You can use an attribute selector:

$('input:hidden[value="..."]')
梦初启 2024-10-22 17:46:03
$("input[type='hidden']").each(function() {
  if ($(this).val() == $whatever) $(this).val('');
});
$("input[type='hidden']").each(function() {
  if ($(this).val() == $whatever) $(this).val('');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文