如何在jquery中分配,清除和获取隐藏字段的值?

时间:2010-04-01 10:11:12

标签: jquery html

考虑页面HfId

中的隐藏字段
<input type="hidden" id="HfId"/>

如何在jquery中分配,清除和获取隐藏字段的值?任何建议......

2 个答案:

答案 0 :(得分:21)

jQuery的Element Selector正是为此而设计的。它允许您选择符合给定名称,ID或类的所有元素:

$("a")       // Get all a-elements
$("#id")     // Get all elements with the id "id"
$(".class")  // Get all elements with the class "class"

元素的可见性或其他属性不会干扰它,因为它仍然存在于文档的DOM中。

字段具有重载函数val()val($value),允许您获取和设置字段的值:

$val = $("#HfId").val();  // Get
$("#HfId").val("");       // Clear
$("#HfId").val($newVal);  // Set

答案 1 :(得分:2)

$("#HfId").val("pony");
var x = $("#HfId").val();