js+jquery的取值样本,持续更新中......

1.获取下拉列表的值和显示的值
<select id="selectsubcompany" name="selectsubcompany" onchange="getName();">
<option>--请选择--</option>
  <s:iterator value="subcompanyList">				
      <option value="${id}">${companyname}</option>	
   </s:iterator>
</select>

js里面的写法
function getName(){
var companyId=document.getElementById("selectsubcompany").value;//取得选中的value值
var subcompanyId=$('#selectsubcompany option:selected').text();//取得选框里面的值
alert(companyId+subcompanyId)                                 //弹出的是"数字+名称"
windows.location.href="searchNews.action?subcompanyId="+companyId;//js里面写提交href
//用jquery取得<s:checkboxlist list=""></s:checkboxlist>的勾选值时后面采用
//.nexttext()方法依次取出值;
}


3.判断<s:if>用法; 判断为空和性别

<s:if test="#nickname==null">${wbid}</s:if><s:else>${nickname}</s:else>
<s:if test="sex==1">男</s:if><s:elseif test="sex==0">女</s:elseif><s:else>未知</s:else>

你可能感兴趣的:(java,jquery,jsp)