0

我有上传表格:

 <form enctype="multipart/form-data" action="uploader/" method="POST">
    <input type="hidden" name="type" value="A">
    <br>
    Choose a file to upload: <input name="uploadedfileInput" type="file" /><input type="submit" value="Upload File" /><img src="/invite/images/Input.gif" style="margin-left: 140px">
</form>

你可以看到我通过value="A"

我怎样才能代替"A"一些返回值的函数?

就像是:

<input type="hidden" name="type" value="getSomeValue()">

JS

...

function  getSomeValue(){
  return localStorage['some Data'];
}
...

谢谢你的帮助,

4

2 回答 2

1

服用:

 <input type="hidden" name="type" id="type">

使用 jquery,您可以执行以下操作:

 jQuery('#type').val('whatever');

或者,不添加id

 jQuery('input[name="type"]').val('whatever');
于 2013-06-27T08:47:33.313 回答
0

返回值属性:

$(selector).val()

设置值属性:

$(selector).val(value)

使用函数设置 value 属性:

$(selector).val(function(index,currentvalue))
于 2013-06-27T09:32:39.573 回答