5,007
社区成员
发帖
与我相关
我的任务
分享
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-type" content="text/html;charset=gb2312"/>
<head>
<title>afd</title>
</head>
<body>
<script type="text/javascript">
function ds(){
var obj=document.getElementById('aaa');
//return obj.value;
alert(obj.options[obj.selectedIndex].innerHTML);
}
document.write("<select id='aaa' name='aaa' onchange=\"ds()\"><option>aaaa</option><option>bbbb</option></select>");
</script>
</body>
</html>