2008-04-27

不能選擇的 option

在<select>裡頭,偶爾會有單純解說、不能選擇的<option>標籤。標準的做法如下:
<option disabled="disabled">
但在 IE7 以下都不支援。以下是網路上領領有名的 "select-option-disabled-emulation.js" 解法,為了減少 Firefox 等支援標準的瀏覽器的載入時間,我多加了一行。

function setDisabledSelect() {
if(navigator.appName != 'Microsoft Internet Explorer')
return; // only for bogus IE
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";
}
}
}

沒有留言: