⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectadd.js

📁 jsp程序开发系统
💻 JS
字号:
function addElement(inputname, selectname) {	// get the field objects	var input = document.getElementById(eval('inputname')); 	var select = document.getElementById(eval('selectname')); 	// add element	select.options[select.options.length] = new Option(input.value, input.value);	input.value = '';}function removeFrom(inputname, selectname) {	// get the field objects	var input = document.getElementById(eval('inputname')); 	var select = document.getElementById(eval('selectname')); 	if (select.selectedIndex == -1) {		alert("Please select an item to remove");		return false;	}		for (i=select.options.length - 1;i>=0; i--) { 	   if (select.options[i].selected) { 		   select.options[i] = null; 	   }    } }function selectSubmit(selectname) {	// select all the fields	var select = document.getElementById(eval('selectname')); 	for (i=select.options.length - 1;i>=0; i--) { 	   select.options[i].selected = true;   } }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -