去掉字串起始和結尾的空格。
jQuery 程式碼:
程式碼如下:
$. 。 >
$("#A").val("1" ) id為A的值就是1了jQuery中都這樣,賦值的時候作為參數傳給函數,和單純的js有區別,
像$("#A").html("1")$( "#A").text("1") 都是賦值$("#A").html() $("#A").text() 都是取值,取 html,
取text文字
方法一:
複製程式碼
方法二:
複製程式碼
radio 按鈕群組, name=”sex”.
複製程式碼
Unknown
1. 取得radio選取的value.
複製程式碼
$('input:radio[name=sex]:checked').val();
2. 選擇radio 按鈕(Male).
$('input:radio[name=sex]:nth(0)').attr('checked' ,true);
或
程式碼如下:
🎜>$('input:radio[name=sex]')[0].checked = true;
3. 選擇radio 按鈕(Female).
程式碼如下:
$('input:radio[name=sex]:nth(1)').attr( 'checked',true);
或
$('input:radio[name=sex]')[1].checked = true;
4. 選擇radio 按鈕( Unknown).
程式碼如下:
$('input:radio[name= sex]:nth(2)').attr('checked',true);
或
$('input:radio[name=sex]')[2].checked = true;
5. 重置radio 按鈕.
代碼如下:
$('input:radio[name=sex]').attr('checked',false);