首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

select用js如何循环的 小弟我的老是报错呀!

2014-01-19 
select用js怎么循环的我的老是报错呀!!我jsp是:%@ page languagejava importjava.util.* pageEncod

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>
        <option value="zh">中文</option>
    </select>
  </body>


onload事件应该用在body上面,就是页面加载时候执行

热点排行