code.jsp~18~
来自「用Ajax技术实现一个邮政编码查找的功能.」· JSP~18~ 代码 · 共 14 行
JSP~18~
14 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.accp.xdj.zipcode.server.action.*" %>
<%
String code = request.getParameter("postalcode");
String str = "t|t";
str = BusinessDelegate.getAreaInfo(code);
System.out.println(code);
out.clear();
if(str!=null)
out.print("kkkkk|kkk"+str);
else
out.print("dfghjh|;;;;"+str);
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?