我有一个隐藏字段,如下所示。
<input type="hidden" value="home" name="newdirpath" />
<input type="button" id="btn"/>
如何value
通过 jquery 动态地为属性赋值?
我的 Jquery 是这样的。
$('#btn').click(function(){
var text="helloworld"
/* What shall I given here for inputting the value of variable text into the attribute `value` of input tag */
});
请给我建议,因为我是 Jquery 和 html 的初学者。谢谢。