Ⅰ javascript,confirm對話框上面帶一個復選框,怎麼實現
window.confirm()對話框中是不能加任何元素的(VB似乎可以),如果你想實現你所說的功能,建議自己做一個仿似對話框的頁面。
Ⅱ 我寫的js程序是點擊一個按鈕彈出一個有一些復選框的div,但是每次點擊後div只是閃現一下就沒了
確認一下,頁面【按鈕】點擊是否存在頁面的刷新,例如【按鈕】在form標簽當中
Ⅲ 求js代碼,三個復選框選項,選中一個復選框後面彈出對應的下拉框,選中兩個復選框要出現兩個對應的下拉框
<! html>
<html>
<head>
<title></title>
<style type="text/css">
.hide{
display: none;
}
</style>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(function(){
$('.cbx').click(function(){
c = $(this).is(":checked");
t = $(this).attr("target");
if(!c)
$('#o'+t).hide();
else
$('#o'+t).show();
});
})
</script>
</head>
<body>
<input target="1" class="cbx" type="checkbox" value="test1">
<select id="o1" class="hide"><option>1</option></select>
<input target="2" class="cbx" type="checkbox" value="test2">
<select id="o2" class="hide"><option>2</option></select>
<input target="3" class="cbx" type="checkbox" value="test3">
<select id="o3" class="hide"><option>3</option></select>
</body>
</html>
Ⅳ js使用DOM設置單選按鈕、復選框及下拉菜單的方法
本文實例講述了js使用DOM設置單選按鈕、復選框及下拉菜單的方法。分享給大家供大家參考。具體實現方法如下:
1.設置單選按鈕
單選按鈕在表單中即<input
type="radio"
/>它是一組供用戶選擇的對象,但每次只能選一個。每一個都有checked屬性,當一項選擇為ture時,其它的都變為false.
先貼上一個例子:
復制代碼
代碼如下:<script
type="text/javascript">
function
getChoice()
{
var
oForm
=
document.forms["uForm1"];
var
aChoices
=
oForm.camera;
for
(i
=
0;
i
<
aChoices.length;
i++)
//遍歷整個單選項表
if
(aChoices[i].checked)
//如果發現了被選中項則退出
break;
alert("相機品牌是:"
+
aChoices[i].value);
}
function
setChoice(iNum)
{
var
oForm
=
document.forms["uForm1"];
oForm.camera[iNum].checked
=
true;
}
</script>
<form
method="post"
name="uForm1"
action="addInfo.aspx">
相機品牌:
<p>
<input
type="radio"
name="camera"
id="canon"
value="Canon">
<label
for="canon">Canon</label>
</p>
<p>
<input
type="radio"
name="camera"
id="nikon"
value="Nikon">
<label
for="nikon">Nikon</label>
</p>
<p>
<input
type="radio"
name="camera"
id="sony"
value="Sony"
checked>
<label
for="sony">Sony</label>
</p>
<p>
<input
type="radio"
name="camera"
id="olympus"
value="Olympus">
<label
for="olympus">Olympus</label>
</p>
<p>
<input
type="radio"
name="camera"
id="samsung"
value="Samsung">
<label
for="samsung">Samsung</label>
</p>
<p>
<input
type="radio"
name="camera"
id="pentax"
value="Pentax">
<label
for="pentax">Pentax</label>
</p>
<p>
<input
type="radio"
name="camera"
id="others"
value="其它">
<label
for="others">others</label>
</p>
<p>
<input
type="submit"
name="btnSubmit"
id="btnSubmit"
value="Submit"
class="btn">
</p>
<p>
<input
type="button"
value="檢測選中對象"
onclick="getChoice();">
<input
type="button"
value="設置為Canon"
onclick="setChoice(0);">
</p>
</form>
Ⅳ js 這里的復選框是怎麼加上去的
這個是瀏覽器的功能,並不是你可以通過代碼控制的.在IE下你就看不到這個復選框