You can access hidden fields' values with val()
, just like you can do on any other input element:(您可以使用val()
访问隐藏字段的值,就像您可以对任何其他输入元素执行操作一样:)
<input type="hidden" id="foo" name="zyx" value="bar" />
alert($('input#foo').val());
alert($('input[name=zyx]').val());
alert($('input[type=hidden]').val());
alert($(':hidden#foo').val());
alert($('input:hidden[name=zyx]').val());
Those all mean the same thing in this example.(在这个例子中,这些都意味着相同的事情。) 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…