如何在onclick函数中传递字符串参数

时间:2016-04-24 13:59:40

标签: javascript jsp

这是我的jsp代码

<html>
<head>
<script>
function updatestatus(str){
    //window.location.href="updatestatus.jsp?cid="+str;
    alert(str);
}
function deletecompany(str1){
    alert(str1)
    //window.location.href="deletecompany.jsp?cid="+str1;
}
</script>
</head>
<body>
<%
String status=request.getParameter("status");
//String id=request.getParameter("id");
String id="0005";
out.println(id);
if(status.equals("approve")){
    out.println("<input type='button' value='update' onclick='updatestatus(\""+id+"\")'/>");
}else if(status.equals("reject")){
    out.println("<input type='button' value='delete' onclick='deletecompany(id)'/>");
}
%>
</body>
</html>

我可以获得两种类型的按钮,但点击时没有响应。我在函数括号中尝试了很多参数格式,它们都不起作用......我想知道是什么问题,你能给我一些建议吗?

感谢您的关注 最好的问候;

1 个答案:

答案 0 :(得分:0)

试试这段代码:

<%
String status = request.getParameter("status");
String id     = request.getParameter("id");
String value  = null;
String func   = null;

if (status.equals("approve")) {
  value = "update";
  func  = "updatestatus";
} else if (status.equals("reject")) {
  value = "delete";
  func  = "deletecompany";
}
%>
 <input type='button' value='<%=value%>' onclick='<%=func%>("<%=id%>")'/>

PS 使用JSTL而不是jsp scriptlet。