📄 combobox.js
字号:
// Adapted from work by Yucca Korpela // http://www.cs.tut.fi/~jkorpela/forms/combo.htmlfunction other_choice(dropDown) { opt = dropDown.options[dropDown.selectedIndex]; ret = false; if (opt.value == "_OTHER_") ret = true; return ret;}function activate(field) { field.disabled=false; if(document.styleSheets)field.style.visibility = 'visible'; field.focus(); }function process_choice(selection,textfield) { b = other_choice(selection); if(b) { activate(textfield); } else { textfield.disabled = true; if(document.styleSheets)textfield.style.visibility = 'hidden'; textfield.value = ''; }}function check_choice(dropDown) { if(!other_choice(dropDown)) { dropDown.blur(); alert('Please check your menu selection first'); dropDown.focus(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -