作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 html 中,我使用了带有动态 ID 的隐藏字段。
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="123" />something 1</a>
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="456" />something 2</a>
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="789" />something 3</a>
这里我获取了jquery中上述隐藏元素的id。
var hiddenID = $('input[name$="edit_hid"]').attr('id');
alert(hiddenID );
每当我点击超链接“something 1”、“something 2”、“something 3”时,我总是得到 ID 作为 edit_0
如何获取每个超链接的动态 ID?这样我就可以获得这些动态 id 的值。
最佳答案
一种解决方案是在 jquery 选择器中使用 :hidden
:
$("a").on("click", function(){
alert($(":hidden", this).val());
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="123" />something 1</a>
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="456" />something 2</a>
<a><input type="hidden" name="edit_hid" id="edit_'+id+'" value="789" />something 3</a>
关于javascript - 如何在jquery中获取动态隐藏的id值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27426005/
我是一名优秀的程序员,十分优秀!