日期:2014-05-17 浏览次数:20687 次
$(document).ready(function(){
var dealBtn = "<a class='sava_b b' href='#' id='dealBtn'>处理</a> ";
$("#btnLine").empty();
$("#btnLine").append(dealBtn);
$("#dealBtn").click(function(){
var departID = $("#departID").val();
var obj = document.forms['tableform'];
obj.action = '<s:url value="/dealDispatch.action?method=deal"/>' + "&departID="+departID;
//obj.submit();
});
public String deal()
{
return "deal";
}
<action name="*Dispatch" class="org.web.action.business.DispatchAction"
method="{1}">
<result name="list">/pages/business/dispatch/listDispatch.jsp</result>
<result name="show">/pages/business/dispatch/showInspect.jsp</result>
<result name="check">/pages/business/dispatch/checkDispatch.jsp</result>
<result name="openHis">/pages/business/dispatch/listOpenHis.jsp</result>
<result name="oshow">/pages/business/dispatch/showOpenHis.jsp</result>
<result name="deal">/pages/business/dispatch/dealDispatch.jsp</result> </action>