最近,我遇到了一个网页,有人问如何向隐藏字段添加一些值。
由于我是JQuery的新手,因此我尝试使用Javascript代替了以下代码:

<html>
<head>
<script type="text/javascript">
<!--
function t() {
document.testform.testfield.value = "helloworld";
}
-->
</script>
</HEAD>
<body onLoad="t()">
<form name="testform" id="testform">
<input type="hidden" name="testfield" id="testfield">
</form>
</body>
</html>


该代码仅在非隐藏文本框字段中有效。
我不确定JQuery是否可以做到。
是否可以在JQuery中的隐藏文本框字段中添加值?

请帮助。

最佳答案

是的;)

$("input[name=testfield]").attr("value","helloworld");


要么

$("#testfield").attr("value","helloworld");


要么

$("#testfield").val("helloworld"); //Thx Felix Klinger


如果您不想显示表格:

$("input[name=testfield]").attr("type","text");


要么

$("#testfield").attr("type","text");

10-02 18:33