asdf
备忘吧
全部回复
仅看楼主
level 1
<html>
<head> <title>一个网页</title> </head>
<body>
<H1 style="color: white; background-color: blue;" align="center" margin:2cm 4cm 3cm 4cm><strong>互联网发展的起源</strong></h1>
<img src="image/1.jpg" width="400" height="100" align="left" border="0" style="border:1px dashed #9999cc"
>
<font size=2>内容</font>
<br/><br/>
<font size=2>内容2</font>
</body>
</html>
2015年09月22日 07点09分 1
level 1
韭菜面米
班戟
鸡排
juanbing
雪糕
2015年09月29日 04点09分 2
level 1
<html>
<head>
<title>一个网页</title>
</head>
<body style="background-color:#ccccff;margin:0">
<H1 style="color: white; background-color: blue;margin:15" align="center" >
<strong>互联网发展的起源</strong>
</h1>
<img src="image/1.jpg" width="400" height="100" align="left" border="0"
style="border:1px dashed #9999cc ;margin:5">
<div style="text-indent:2em;line-height:1.5;margin:5">
<font style="font-size:12px">
<p style="border-right:3px double red;">
段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一
段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一
</p>
<p style="border-right:3px double orange;">
段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二
段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二
</p>
</font>
</div>
</body>
</html>
2015年09月29日 07点09分 5
level 1
波点 泼墨 星空 像素 头上
2015年10月08日 02点10分 7
口罩
2015年10月08日 04点10分
level 1
<!DOCTYPE html>
<html>
<head>
<title>下拉菜单.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script language="javascript">
function show(menu){
document.getElementById(menu).style.visibility="visible";
}
function hide(){
document.getElementById("menu1").style.visibility="hidden";
document.getElementById("menu2").style.visibility="hidden";
document.getElementById("menu3").style.visibility="hidden";
}
</script>
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
<table>
<tr bgcolor="#9999FF" align="center">
<td width="120" onMouseMove="show('menu1')" onMouseOut="hide()">系列课程</td>
<td width="120" onMouseMove="show('menu2')" onMouseOut="hide()">教学课件</td>
<td width="120" onMouseMove="show('menu3')" onMouseOut="hide()">教程大纲</td>
</tr>
</table>
<div id="menu1" onMouseMove="show('menu1')" onMouseOut="hide()"style="background:#9999ff;position:absolute;left:12px;top:38px;width:120px;visibility:hidden">
<span>c++程序设计</span><br>
<span>java程序设计</span><br>
<span>c#程序设计</span><br>
</div>
<div id="menu2" onMouseMove="show('menu2')" onMouseOut="hide()"style="background:#9999ff;position:absolute;left:137px;top:38px;width:120px;visibility:hidden">
<span>c++课件</span><br>
<span>java课件</span><br>
<span>c#课件</span><br>
</div>
<div id="menu3" onMouseMove="show('menu3')" onMouseOut="hide()"style="background:#9999ff;position:absolute;left:260px;top:38px;width:120px;visibility:hidden">
<span>c++教学大纲</span><br>
<span>java教学大纲</span><br>
<span>c#教学大纲</span><br>
</div>
</body>
</html>
2015年10月20日 07点10分 10
level 1
XXXXXXXXXXXXXXXXXXXXXXXX
<html>
<head>
<title>下拉菜单示例</title>
<script language="javaScript">
//当鼠标移动到菜单选项的时候显示对应的DIV
function show(menu)
{ document.getElementById(menu).style.visibility="visible"; }
//当鼠标移出的时候隐藏所有的DIV
function hide() {
document.getElementById("menu1").style.visibility="hidden";
document.getElementById("menu2").style.visibility="hidden";
document.getElementById("menu3").style.visibility="hidden";
}
</script>
</head>
<body>
<table>
<tr bgcolor="#9999FF" align="center">
<td width="120" onMouseMove="show('menu1')" onMouseOut="hide()">系列课程</td>
<td width="120" onMouseMove="show('menu2')" onMouseOut="hide()">教学课件</td>
<td width="120" onMouseMove="show('menu3')" onMouseOut="hide()">课程大纲</td>
</tr>
</table>
<div id="menu1" onMouseMove="show('menu1')" onMouseOut="hide()"
style="background:#9999FF;position:absolute;left:12;top:38;width:120;
visibility:hidden">
<span>c++程序设计</span><br>
<span>java程序设计</span><br>
<span>c#程序设计</span><br>
</div>
<div id="menu2" onMouseMove="show('menu2')" onMouseOut="hide()"
style="background:#9999FF;position:absolute;left=137;top=38;width=120;
visibility=hidden">
<span>c++课件</span><br>
<span>java课件</span><br>
<span>c#课件</span><br>
</div>
<div id="menu3" onMouseMove="show('menu3')" onMouseOut="hide()"
style="background:#9999FF;position:absolute;left=260;top=38;width=120;
visibility=hidden">
<span>c++教学大纲</span><br>
<span>java教学大纲</span><br>
<span>c#教学大纲</span><br>
</div>
</body>
</html>
2015年10月20日 07点10分 11
level 1
<html xmlns="http://www.w3.org/1999/xhtml">


JS下拉菜单代码

#sddm{margin: 0 auto;padding: 0;z-index: 30;background-color:#F4F4F4;width: 480px;height:23px;}
#sddm li{margin: 0;padding: 0;list-style: none;float: left;font: bold 12px arial}
#sddm li a{display: block;margin: 0 1px 0 0;padding: 4px 10px;width: 60px;background: <a href="https://tieba.baidu.com/mo/q/hotMessage?topic_id=0&fid=290788&topic_name=5970B2;color: &is_video_topic=0">#5970B2;color: #</a>FFF;text-align: center;text-decoration: none}
<a href="https://tieba.baidu.com/mo/q/hotMessage?topic_id=0&fid=290788&topic_name=sddm li a:hover{background: &is_video_topic=0">#sddm li a:hover{background: #</a>49A3FF}
#sddm div{position: absolute;visibility: hidden;margin: 0;padding: 0;background: #EAEBD8;border: 1px solid <a href="https://tieba.baidu.com/mo/q/hotMessage?topic_id=0&fid=290788&topic_name=5970B2}&is_video_topic=0">#5970B2}#</a>sddm div a{position: relative;display: block;margin: 0;padding: 5px 10px;width: auto;white-space: nowrap;text-align: left;text-decoration: none;background: <a href="https://tieba.baidu.com/mo/q/hotMessage?topic_id=0&fid=290788&topic_name=EAEBD8;color: &is_video_topic=0">#EAEBD8;color: #</a>2875DE;font: 12px arial}#sddm div a:hover{background: #49A3FF;color: #FFF}



<!--
var timeout= 500;
var closetimer= 0;
var ddmenuitem= 0;
function mopen(id)
{
mcancelclosetime();
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = 'visible';
}
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}
document.onclick = mclose;
// -->





首页



HTML


下拉菜单


CSS下拉




下载



ASP源码


AJAX示例


DIV教程




Order



Visa Credit Card


Paypal




帮助中心



下载帮助


在线咨询




联系



E-mail


发送表单






2015年10月20日 07点10分 12
level 1
jsjzhangyangdxy
jsj16
2015年10月27日 07点10分 15
level 1
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head><title>answer</title></head>
<body>
<% String str1=request.getParameter("shuru");
double s1=Double.parseDouble(str1);
double s2=s1*s1;
request.setAttribute("st1",s1);
request.setAttribute("st2",s2);
%> <jsp:include page="shuru.jsp">
<jsp:param name="name" value="shuru" />
</jsp:include>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<body>
<form action="shuru.jsp" method="post">
输入: <input type="text" name="shuru" ><br>
<input type="submit" value="提交" >
</form>
</body>
</html>
2015年11月03日 07点11分 16
level 1
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>di er ti~</title>
</head>
<body>
<%
String str=request.getParameter("num");
if(str==null){str="1";}
int n=Integer.parseInt(str);
double f;
f=n*n;
%>
<%=n %>的平方等于<%=f %>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>dieriti</title>
</head>
<body>
<b>求一个数的平方</b>
<br>
<jsp:include page="01.jsp">
<jsp:param name="num" value="22" />
</jsp:include>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
</body>
</html>
2015年11月03日 07点11分 17
1