日期:2014-05-16  浏览次数:20390 次

select用js怎么循环的 我的老是报错呀!!
我jsp是:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'Test.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
var select=document.getElementById("selectLangage");
for(var i=0;i<select.options.length;i++){
alert(select.options[i].innerHTML);
}
</script>
  </head>
  
  <body>
    <select id="selectLangage" name="select" onchange="change()">
<option value="en">英文</option>
<option value="zh">中文</option>
</select>
  </body>
</html>



var select一直是空值 是什么情况。。
其实我想实现国际化的。jsp的java代码是:

String currLanguage=Locale.getDefault().getLanguage();
if(currLanguage!=""||currLanguage!=null){%>
<script type="text/javascript">
var select=document.getElementById("selectLangage");
for(var i=0;i<select.options.length;i++){
if(select.options[i].value==<%=currLanguage%>){
select.options[i].selected=true;
}
alert(select.options[i].value);
}
</script>
<%}

currLanguage为后台设置过的语言  返回到前台就读取到后台返回的值并且给前台select的相应的option选中

------解决方案--------------------
  
  <body onload="load()">
    <select id="selectLangage" name="select" onchange="change()">
        <option value="en">英文</option>
        <opt