JQuery對(duì)表單元素的基本操作使用總結(jié)
來(lái)源:易賢網(wǎng) 閱讀:984 次 日期:2014-07-19 18:53:03
溫馨提示:易賢網(wǎng)小編為您整理了“JQuery對(duì)表單元素的基本操作使用總結(jié)”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了JQuery對(duì)表單元素的基本操作使用總結(jié),需要的朋友可以參考下。

select下拉列表onChange事件之JQuery實(shí)現(xiàn):

JQuery:

$(document).ready(function () {

$("#selectMenu").bind("change", function () {

if ($(this).val() == "pro1") {

$("#pro1").slideDown();

$("#pro2").slideUp();

}

else if($(this).val() =="pro2") {

$("#pro2").slideDown();

$("#pro1").slideUp();

}

});

});

HTML:

<select id="selectMenu">

<option value="" >Please select product below</option>

<option value="pro1">Product 1</option>

<option value="pro2">Product 2</option>

</select>

//1.jQuery對(duì)select的基本操作

$("#select_id").change(function(){ //code...}); //為Select添加事件,當(dāng)選擇其中一項(xiàng)時(shí)觸發(fā)

var checkValue=$("#select_id").val(); //獲取Select選擇的Value

var checkValue = $('.formc select[@name="country"]').val(); //得到下拉菜單name=country的選中項(xiàng)的值

var checkValue=$("#select_id").val().join(","); //獲取select多選(multiple="true"時(shí)候) 的value

var checkText = $("#select_id").find("option:selected").text(); //獲取Select選擇的Text

var checkText = $("select[@name=country] option[@selected]").text(); //獲取select被選中項(xiàng)的文本(注意中間有空格)

var checkText = $("#select_id option:selected").text();

var cc2 = $('.formc select[@name="country"]').val(); //得到下拉菜單的選中項(xiàng)的值

var cc3 = $('.formc select[@name="country"]').attr("id"); //得到下拉菜單的選中項(xiàng)的ID屬性值

var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值

var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大的索引值

$("#select_id ").get(0).selectedIndex = 1; //設(shè)置Select索引值為1(第二項(xiàng))的項(xiàng)選中

$('#select_id')[0].selectedIndex = 1; //設(shè)置Select索引值為1(第二項(xiàng))的項(xiàng)選中

$("#select_id ").val(4); //設(shè)置Select的Value值為4的項(xiàng)選中

$("#select_id option[text='jQuery']").attr("selected", true); //設(shè)置Select的Text值為jQuery的項(xiàng)選中

$("#select_id").attr("value",'-sel3'); //設(shè)置value=-sel3的項(xiàng)目為當(dāng)前選中項(xiàng)

$("#select_id").empty(); //清空下拉框

$("#select_id").append("<option value='Value'>Text</option>"); //為Select追加一個(gè)Option(下拉項(xiàng))

$("<option value='1'>1111</option><option value='2'>2222</option>").appendTo("#select_id")//添加下拉框的option

$("#select_id").prepend("<option value='0'>請(qǐng)選擇</option>"); //為Select插入一個(gè)Option(第一個(gè)位置)

$("#select_id option:last").remove(); //刪除Select中索引值最大Option(最后一個(gè))

$("#select_id option[index='0']").remove(); //刪除Select中索引值為0的Option(第一個(gè))

$("#select_id option[value='3']").remove(); //刪除Select中Value='3'的Option

$("#select_id option[text='4']").remove(); //刪除Select中Text='4'的Option

//2.jquery對(duì)radio的基本操作

var item = $('input[@name=items][@checked]').val(); //獲取一組radio被選中項(xiàng)的值

var rval = $("input[@type=radio][@checked]").val(); //得到單選框的選中項(xiàng)的值(注意中間沒(méi)有空格)

$('input[@name=items]').get(1).checked = true; //radio單選組的第二個(gè)元素為當(dāng)前選中值

$("input[@type=radio]").attr("checked",'2'); //設(shè)置value=2的項(xiàng)目為當(dāng)前選中項(xiàng)

$("input[@type=radio][@value=2]").attr("checked",'checked'); //設(shè)置單選框value=2的為選中狀態(tài).(注意中間沒(méi)有空格)

//3.jquery對(duì)checkbox的基本操作

$("#checkbox_id").attr("value"); //多選框checkbox

$("input[@type=checkbox][@checked]").val(); //得到復(fù)選框的選中的第一項(xiàng)的值

$("input[@type=checkbox][@checked]").each(function(){ //由于復(fù)選框一般選中的是多個(gè),所以可以循環(huán)輸出

alert($(this).val());

});

$("#chk1").attr("checked",'');//不打勾

$("#chk2").attr("checked",true);//打勾

if($("#chk1").attr('checked')==undefined) //判斷是否已經(jīng)打勾

//4.jquery對(duì)text的基本操作

$("#txt").attr("value"); //文本框,文本區(qū)域:

$("#txt").attr("value",''); //清空內(nèi)容

$("#txt").attr("value",'11');//填充內(nèi)容

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:JQuery對(duì)表單元素的基本操作使用總結(jié)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)