当前位置: 代码迷 >> JavaScript >> js跟接jsp判断值是否是undefined的方法
  详细解决方案

js跟接jsp判断值是否是undefined的方法

热度:126   发布时间:2012-10-20 14:12:48.0
js和接jsp判断值是否是undefined的方法
1、JS
if (typeof (lastBookID) == "undefined") {
							alert("undefined---");
						}



1、JSP
<%
	String bookId = request.getParameter("bookId");
	if (null != bookId && !"undefined".equalsIgnoreCase(bookId)) {
		session.setAttribute("bookId", bookId);
	}
%>
  相关解决方案