導航:首頁 > 編程語言 > js動態設置checkbox選中

js動態設置checkbox選中

發布時間:2024-06-29 10:16:48

⑴ 如何用js的函數控制checkbox是否被選中

<input type="checkbox" id="test" /> 這是要給checkbox


<button onclick='check()'>test</butto

functioncheck(){
varcheckbox=document.getElementById('test');//
alert(checkbox.checked);//是否被選中
if(checkbox.checked){
//選中了
}else{
//沒選中
}
}


checked屬性就是用來表示是否選中的

⑵ 求javascript checkbox 選中事件代碼

首先通過getElementById或其它方式獲得這些對象obj,然後判斷obj.checked = true或false就可以了。

例:

<input id='bigclassauthorize' type='checkbox' onclick='testClickBigCheckBox()'/>

<input id='smallclassauthorize1' type='checkbox'/>

<input id='smallclassauthorize2' type='checkbox'/>

....

function testClickBigCheckBox(){

var big = document.getElementById('bigclassauthorize');

var small1 = document.getElementById('smallclassauthorize1');

var small2 = document.getElementById('smallclassauthorize2');

if(big.checked == true){

small1.checked = true;

small2.checked = true;

}else{

small1.checked = false;

small2.checked = false;

}

}

代碼可以精簡或者封裝,這里只是簡單的描述一下基本做法,以上是大項被選中的事件處理,小項的原理差不多。

(2)js動態設置checkbox選中擴展閱讀:

思路:獲取checkbox對象,根據value屬性設置checkbox的checked屬性(true為選中,false為取消選中)。下面實例演示——根據文本框的制定值設置復選框的選中項:

1、HTML結構

<input name="test" type="checkbox" value="1" />item-1

<input name="test" type="checkbox" value="2" />item-2

<input name="test" type="checkbox" value="3" />item-3<br>

<input name="test" type="checkbox" value="4" />item-4

<input name="test" type="checkbox" value="5" />item-5<br>

<input type="text" id="val"><input type="button" value="確定" onclick="fun()">

2、javascript代碼

function fun(){

var val = document.getElementById("val").value.split(",");

var boxes = document.getElementsByName("test");

for(i=0;i<boxes.length;i++){

for(j=0;j<val.length;j++){

if(boxes[i].value == val[j]){

boxes[i].checked = true;

break

}

}

}

}

⑶ js為input 設置checkbox元素屬性並設為選中狀態

推薦使用兼容瀏覽器方式。

⑷ 如何使用javascript來設置checkbox的選中狀態

1、定義一個checkbox節點<input type='checkbox' id='iptchk'/>;
2、根據id獲取checkbox節點var chk = document.getElementById('iptchk');//通過getElementById獲取節點;
3、通過checked設置為回true,變checkbox為選中狀態答chk.checked = true;//設置checked為選中狀態。

⑸ js怎麼給checkbox設置為選中

純生的js是
document.getElementById("a").checked="checked";//a是要選中元素的id屬性

可以用jq
$("#a").prop("checked","checked");
其他問題繼續問。

⑹ js控制checkbox的選中,同意協議

提供兩種方案參考:
1.在點提交按鈕的時候驗證checkbox是否選中
function confirmBox(){
var confirmBox = document.getElementById("cbId");//cbId為checkbox的ID
if(confirmBox.checked){
form.submit();
}else{
alert("請同意協議");
return false;
}
}

2. 隱藏提交按鈕,選中checkbox後,才允許出現
初始化時disable掉提交按鈕:<input id="submitBtn " type="button" disabled="disabled"/>
var confirmBox = document.getElementById("cbId");//cbId為checkbox的ID
var submitBtn = document.getElementById("submitBtn");//submitBtn為提交表單按鈕的ID
function confirmBox(){
if(confirmBox.checked){
submitBtn.removeAttribute("disabled");
}else{
submitBtn.disabled="true";
}
}

閱讀全文

與js動態設置checkbox選中相關的資料

熱點內容
書香門第安卓 瀏覽:395
如何分離編程數值 瀏覽:996
描述文件是幹嘛的 瀏覽:868
文件格式化恢復 瀏覽:353
v顯卡驅動程序源碼 瀏覽:44
iphone5s聲音小怎麼解決 瀏覽:656
文件名文字看不清了 瀏覽:313
電腦找不到cftmon文件 瀏覽:768
qq分組久伴酒伴久伴 瀏覽:697
文檔轉成pdf格式文件 瀏覽:621
離子數據怎麼寫 瀏覽:876
jspapijar官網下載 瀏覽:366
html調用文本文件 瀏覽:921
想學數控編程哪裡好 瀏覽:860
js獲取系統動態時間間隔 瀏覽:165
win10改win7進pe卡住 瀏覽:456
u盤中毒ink文件 瀏覽:718
蘋果換機數據遷移包含哪些數據 瀏覽:234
程式控制可編程直流電源在哪裡 瀏覽:598
容積長寬高的數據從什麼面測量 瀏覽:978

友情鏈接