select option 禁止选中
<select><optionvalue="1">a</option><optionvalue="2">b</option><optionvalue="3">c</opt...
<select>
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
我想让c不能选中而a和b正常选中 有没有什么解决办法?
问题已解决:js控制:判断如果我选中的是c ,返回到上一次选择的值。
谢谢你们回答 展开
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
我想让c不能选中而a和b正常选中 有没有什么解决办法?
问题已解决:js控制:判断如果我选中的是c ,返回到上一次选择的值。
谢谢你们回答 展开
2个回答
展开全部
用js判断一下如果是c就不让它选中
追问
我就是问怎么让c不让选中
追答
无标题文档
function aa(a){
if(a.value==3){
a.options[2].removeAttribute("selected");
a.options[0].setAttribute("selected","selected");
alert("不能选择c");
}
}
a
b
c
楼上回答的只适应IE8、火狐;IE8以下不管用。
结合楼上的这样写!
或者把这段js加到网页中,其它的什么也不用管
window.onload = function() {
if (document.getElementsByTagName) {
var s = document.getElementsByTagName("select");
if (s.length > 0) {
window.select_current = new Array();
for (var i=0, select; select = s[i]; i++) {
select.onfocus = function(){ window.select_current[this.id] = this.selectedIndex; }
select.onchange = function(){ restore(this); }
emulate(select);
}
}
}
}
function restore(e) {
if (e.options[e.selectedIndex].disabled) {
e.selectedIndex = window.select_current[e.id];
}
}
function emulate(e) {
for (var i=0, option; option = e.options[i]; i++) {
if (option.disabled) {
option.style.color = "graytext";
}
else {
option.style.color = "menutext";
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询