JSP基本语法学习一、 注释① JSP注释语法:<%- - 注释内容 - -%> 不回出现在客户端的源代码中二、表达式① JSP表达式的作用是定义JSP的一些输出 表达式基本语法: <%= 变量|返回值|表达式% > JSP表达式的作用是将其里面内容所运算的结果输出到客户端 例: "<%=msg%> Read More
posted @ 2020-03-04 22:28 厂长在线养猪 Views(530) Comments(0) Diggs(0) Edit
事例:<form action="http://www.baidu.com"> 请输入你的账号:<input name="account" type="text"> <BR> 请输入你的密码:<input name="password" type="password"> <BR> <input ty Read More
posted @ 2020-03-04 22:22 厂长在线养猪 Views(209) Comments(0) Diggs(0) Edit
中文乱码问题 (1) 中文无法显示 没有把头文件上的字符集设置为中文字符集 ①<%@ page language="java" pageEncoding="gb2312" %> ②<%@ page language="java" contentType="text/html;charset=gb23 Read More
posted @ 2020-03-04 22:21 厂长在线养猪 Views(86) Comments(0) Diggs(0) Edit