<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd
">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<script type="text/javascript">
<!--
window.onload = function(){
var inp = document.getElementsByTagName('input');
var sel = document.getElementById("sel");
for(var i=0;i<inp.length;i++){
inp[i].onclick = function(){
sel.setAttribute("src",this.id);
}
}
sel.onchange = function(){
if(this.getAttribute("src")){
var src = document.getElementById(this.getAttribute("src"));
src.value = this.options[this.selectedIndex].text;
src.focus();
}
}
}
//-->
</script>
<body>
<input id="inp1" />
<input id="inp2" />
<select id="sel" src="" style="height:200px;" multiple="multiple">
<option>内容1</option>
<option>内容2</option>
<option>内容3</option>
<option>内容4</option>
</select>
</body>
</html>