📄 linkupdate.jsp~1~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<%@ page import="com.victor.domain.LinkActionForm"%>
<html>
<head>
<title>插入链接</title>
</head>
<script language="JavaScript">
function RgTest(){
if(document.form.linkPicture.value==""){
window.alert("请输入图片地址:");
document.form.linkPicture.focus();
return false;
}
if(document.form.linkName.value==""){
window.alert("链接的图片信息:");
document.form.linkName.focus();
return false;
}
if(document.form.linkAddress.value==""){
window.alert("链接的地址:");
document.form.linkAddress.focus();
return false;
}
return true;
}
</script>
<%List list=(List)request.getAttribute("list")%>
<body bgcolor="#ffffc0">
<div align="center" >插入链接
</div>
<form action="../../../lInkInsertAction.do" onSubmit="return RgTest()" method="post" name="form">
<div align="center"> </div>
<table width="430" border="3" align="center" cellpadding="3" cellspacing="3">
<tr>
<td width="94">链接的图片</td>
<td width="305"><input type="file" name="linkPicture"></td>
</tr>
<tr>
<td>链接的图片信息</td>
<td><input type="text" name="linkName"></td>
</tr>
<tr>
<td>链接的地址</td>
<td><input type="text" name="linkAddress"></td>
</tr>
</table>
<div align="center">
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
</div>
</form>
<h1> </h1>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -