使用jquery
$('#select1').val();
$('#select1').html();
1. $("#select_id").change(function()); //為select新增事件,當選擇其中一項時觸發2. var checktext=$("#select_id").find("option:selected").text(); //
獲取select選擇的
3. var checkvalue=$("#select_id").val(); //
獲取select選擇的value
4. var checkindex=$("#select_id ").get(0).selectedindex; //
獲取select選擇的索引值
5. var maxindex=$("#select_id option:last").attr("index"); //
獲取select最大的索引值
$("input[type=radio][checked]").val();
$("#checkbox_id").attr("value");
$("#txt").attr("value");
2、html
選擇對應option
$(".selector").val("pxx");//選中option值為pxx的項
$("#select_id ").val(4); //
設定select的value值為4的項選中
$("#sel").attr("value",'-sel3');//
設定value=-sel3的專案為當前選中項
$("#select_id ").get(0).selectedindex=1; //
設定select索引值為1的項選中
$("#select_id option[text='jquery']").attr("selected", true); //
設定select的text值為jquery的項選中
$(".selector").find("option[text='pxx']").attr("selected",true);//
設定text為pxx的項選中
$("input[type=radio]").attr("checked",'2');//設定value=2的專案為當前選中項
$("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//
打勾 if($("#chk1").attr('checked')==undefined) //
判斷是否已經打勾
$("#txt").attr("value",'');//清空內容
$("#txt").attr("value",'11');//
填充內容
select
動態新增option
$(".selector1").change(function());
新增刪除option
為select追加乙個option(下拉項)
$("#select_id").prepend("請選擇"); //
為select插入乙個option(第乙個位置)
$("#select_id option:last").remove(); //
刪除select中索引值最大option(最後乙個)
$("#select_id option[index='0']").remove(); //
刪除select中索引值為0的option(第乙個)
$("#select_id option[value='3']").remove(); //
刪除select中value='3'的option
$("#select_id option[text='4']").remove(); //
刪除select中text='4'的option
$("1111
新增下拉框的option
開發規範總結
今年一年都在做新產品,是從零開始的乙個產品,經過五個月的開發終於有了beat版本,開發是基於oracle資料庫,spring mybatis框架,可是當要發版的時候發現了很多問題,在此總結一下 盡量不用的函式和替換函式 1 nvl case when then else end 2 decode c...
HTML規範 個人總結
所有書寫均在英文半形狀態下的小寫 所有標籤必須閉合 統一用tab鍵縮排 屬性值必須帶引號 單引或雙引 ul,li ol,li dl,dt,dd擁有父子級關係的標籤,下一級只能巢狀對應的列表項子級 p,dt,h標籤 裡面不能巢狀塊屬性標籤 a標籤不能巢狀a 內聯元素不能巢狀塊 a除外 對 之類的特殊符...
go語言開發規範
go 語言開發規範 1 長度問題 一行最長不超過80個字元,超過的使用換行展示,盡量保持格式優雅。2 注釋問題 注釋必須是完整的句子,句子的結尾應該用句號作為結尾 英文句號 注釋推薦用英文,可以在寫 過程中鍛鍊英文的閱讀和書寫能力。而且用英文不會出現各種編碼的問題。在編碼階段應該同步寫好 變數 函式...