리자

How to get and set form element values with jQuery

· 17년 전 · 3111

jQuery is a Javascript framework which can simplify coding Javascript for a website and removes a lot of cross browser compatibility issues. This post looks at how to get and set the values of HTML form elements with jQuery.

Getting a form value with jQuery

To get a form value with jQuery use the val() function. Let's say we have a form like this, using an id for each form element:

<input name="foo" id="foo" type="text">

<select name="foo" id="bar">
    <option value="1">one</option>
    <option value="2">two</option>
    <option value="3">three</option>
</select>

We can display an alert for the values of "foo" and "bar" as easily this:

window.alert( $('#foo').val() );
window.alert( $('#bar').val() );

If we're using the name only and not specifying an id, the jQuery to get the form values would be this:

window.alert( $('[@name=foo]').val() );
window.alert( $('[@name=bar]').val() );

If you have a group of radio buttons and want to get the selected button, the code is slightly different because they all have the same name. Using the above code examples will show the value for the first radio button on the form with that name. To find out the value of the checked one, do this instead:

HTML:

<input type="radio" name="baz" value="x">
<input type="radio" name="baz" value="y">
<input type="radio" name="baz" value="z">

jQuery:

window.alert($('input[@name=baz]:checked').val());

Setting a form value with jQuery

You can set the form values with jQuery using the same val() function but passing it a new value instead. Using the same example forms above, you'd do this for the text input and select box:

$('#foo').val('this is some example text');
$('#bar').val('3');
OR
$('[@name=foo]').val('this is some example text');
$('[@name=bar]').val('3');

Using the above for a radio button will change the actual value of the radio button rather than changing the one that is selected. To change the radio button that is selected you'd do this:

$('input[@name="baz"]')[0].checked = true;

[0] would set the first one checked, [1] would set the second one checked and so on.

[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 3,701
17년 전 조회 2,583
17년 전 조회 2,200
17년 전 조회 1,964
17년 전 조회 2,496
17년 전 조회 5,190
17년 전 조회 1,893
17년 전 조회 2,632
17년 전 조회 2,593
17년 전 조회 2,874
17년 전 조회 2,589
17년 전 조회 4,924
17년 전 조회 3,417
17년 전 조회 3,326
17년 전 조회 2,046
17년 전 조회 1,709
17년 전 조회 4,438
17년 전 조회 2,100
17년 전 조회 2,104
17년 전 조회 2,596
17년 전 조회 2,342
17년 전 조회 1,974
17년 전 조회 4,385
17년 전 조회 2,207
17년 전 조회 3,568
17년 전 조회 3,487
17년 전 조회 1,480
17년 전 조회 2,259
17년 전 조회 2,040
17년 전 조회 2,293
17년 전 조회 3,097
17년 전 조회 3,457
17년 전 조회 3,663
17년 전 조회 3,780
17년 전 조회 1,874
17년 전 조회 1,875
17년 전 조회 2,682
17년 전 조회 2,427
17년 전 조회 2,710
17년 전 조회 3,259
17년 전 조회 3,722
17년 전 조회 2,801
17년 전 조회 2,077
17년 전 조회 3,644
17년 전 조회 3,511
17년 전 조회 3,472
17년 전 조회 4,352
17년 전 조회 3,001
17년 전 조회 2,846
17년 전 조회 3,112
17년 전 조회 3,326
17년 전 조회 3,054
17년 전 조회 1,914
17년 전 조회 2,309
17년 전 조회 1,962
17년 전 조회 2,363
17년 전 조회 2,977
17년 전 조회 9,137
17년 전 조회 3,587
17년 전 조회 4,643
17년 전 조회 2,411
17년 전 조회 4,067
17년 전 조회 1,969
17년 전 조회 1,808
17년 전 조회 2,743
17년 전 조회 1,728
17년 전 조회 2,056
17년 전 조회 1,916
17년 전 조회 2,966
17년 전 조회 1,930
17년 전 조회 1,510
17년 전 조회 1,658
17년 전 조회 3,584
17년 전 조회 2,602
17년 전 조회 2,399
17년 전 조회 1,654
17년 전 조회 2,884
17년 전 조회 1,598
17년 전 조회 1,575
17년 전 조회 1,835
17년 전 조회 3,173
17년 전 조회 2,840
17년 전 조회 2,933
17년 전 조회 1,623
17년 전 조회 1,749
17년 전 조회 3,716
17년 전 조회 3,277
17년 전 조회 4,539
17년 전 조회 2,705
17년 전 조회 2,804
17년 전 조회 1,857
17년 전 조회 2,949
17년 전 조회 2,654
17년 전 조회 3,423
17년 전 조회 2,917
17년 전 조회 2,073
17년 전 조회 2,857
17년 전 조회 2,000
17년 전 조회 1,597
17년 전 조회 2,677