以下のような隠しフィールドがあります。
<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の初心者なのでアドバイスをお願いします。ありがとうございます。