javascript - jQuery val function not working on a hidden field? - Stack Overflow

This is my HTMLcode:<div style='display:none;' id='allformid'><div><

This is my HTMLcode:

<div style='display:none;' id='allformid'>
    <div>
        <form action='#'>
              <input type='text' name='name' id='named'/>
        </form>
    </div>
</div>

And this is my jQuery code to set the value of the input text box:

$("#allformid  #named").val('abcd');

This jQuery code is correct, but the form value is not changed.

This is my HTMLcode:

<div style='display:none;' id='allformid'>
    <div>
        <form action='#'>
              <input type='text' name='name' id='named'/>
        </form>
    </div>
</div>

And this is my jQuery code to set the value of the input text box:

$("#allformid  #named").val('abcd');

This jQuery code is correct, but the form value is not changed.

Share Improve this question edited Nov 16, 2014 at 22:50 Sean Mickey 7,7262 gold badges33 silver badges58 bronze badges asked Oct 31, 2013 at 10:29 Renish KhuntRenish Khunt 5,82418 gold badges57 silver badges93 bronze badges 14
  • because the div is hidden!!! remove style='display:none;' – Arun P Johny Commented Oct 31, 2013 at 10:30
  • 2 If you wanted a hidden field, use <input type='hidden'> rather than hiding the input inside a div. – Tim Ebenezer Commented Oct 31, 2013 at 10:30
  • also since you have an id for the input element $('#named').val('abcd'); – Arun P Johny Commented Oct 31, 2013 at 10:31
  • 3 It probably is changed - it just doesn't look like it has. Open the console and enter $("#named").val(); It will show you the actual value – Reinstate Monica Cellio Commented Oct 31, 2013 at 10:31
  • no div hidden is required. – Renish Khunt Commented Oct 31, 2013 at 10:31
 |  Show 9 more ments

3 Answers 3

Reset to default 10

I tried the same code it works fine. How did you test that the code works or not?

If you check the inspect element, it will not show value="abcd". But if you make the div visible, you can see the value is given. But the value gets set. You can also test the value by getting the value in the js console like this:

$("#allformid #named").val();

However if you want it to display as value="abcd", you will need to write $("#allformid #named").attr("value",'abcd');

html

<form action='#'>
      <input type='hidden' value='' name='name' id='named'/>
</form>

jQuery

$("#named").val('abcd');

Try this

$('#' + $('#Hiddenfield1').val()).val('Hello');

Source: http://forums.asp/t/2003756.aspx?How+to+use+Jquery+to+set+a+textbox+of+a+dynamic+control

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636241a4482197.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信