网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > 实用代码片段 > 正文

200多个网页设计常用技巧代码

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务
接在页面“div”内写下所需内容
  <INPUT TYPE="button" onclick="a1.innerHTML='<font color=red>*</font>'">
  <div id=a1></div>//
  
  49.可以改变页面上的连接的格式,使其为双线
  <style>
  A:link {text-decoration: none; color:#0000FF; font-family: 宋体}
  A:visited {text-decoration: none; color: #0000FF; font-family: 宋体}
  A:hover {text-decoration: underline overline; color: FF0000}
  </style>
  
  <style>
  A:link {text-decoration: none; color:#0000FF; font-family: 宋体}
  A:visited {text-decoration: none; color: #0000FF; font-family: 宋体}
  A:hover {text-decoration: underline overline line-through; color: FF0000}
  TH{FONT-SIZE: 9pt}
  TD{FONT-SIZE: 9pt}
  body {SCROLLBAR-FACE-COLOR: #A9D46D; SCROLLBAR-HIGHLIGHT-COLOR: #e7e7e7;SCROLLBAR-SHADOW-COLOR:#e7e7e7;
  
  SCROLLBAR-3DLIGHT-COLOR: #000000; LINE-HEIGHT: 15pt; SCROLLBAR-ARROW-COLOR: #ffffff;
  
  SCROLLBAR-TRACK-COLOR: #e7e7e7;}
  
  INPUT{BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 1px; PADDING-LEFT: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE:
  
  9pt; BORDER-LEFT-COLOR: #cccccc;
  BORDER-BOTTOM-WIDTH: 1px; BORDER-BOTTOM-COLOR: #cccccc; PADDING-BOTTOM: 1px; BORDER-TOP-COLOR: #cccccc;
  
  PADDING-TOP: 1px; HEIGHT: 18px; BORDER-RIGHT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc}
  DIV,form ,OPTION,P,TD,BR{FONT-FAMILY: 宋体; FONT-SIZE: 9pt}
  textarea, select {border-width: 1; border-color: #000000; background-color: #efefef; font-family: 宋体;
  
  font-size: 9pt; font-style: bold;}
  .text { font-family: "宋体"; font-size: 9pt; color: #003300; border: #006600 solid; border-width: 1px 1px
  
  1px 1px}
  </style>完整的css
  
  
  50.新建frame
  <a
  
  href="javascript:newframe('http://www.163.net/help/a_little/index.html\',\'http://www.163.net/help/a_little
  
  /a_13.html')"><img alt=帮助 border=0 src="/uploadfile/201005/26/B484152800.gif"></a>
  
  51.向文件中写内容
  <%@ page import="java.io.*" %>
  <%
  String str = "print me";
  //always give the path from root. This way it almost always works.
  String nameOfTextFile = "/usr/anil/imp.txt";
  try
  {
   PrintWriter pw = new PrintWriter(new FileOutputStream(nameOfTextFile));
   pw.println(str);
   //clean up
   pw.close();
  }
  catch(IOException e)
  {
   out.println(e.getMessage());
  }
  %>
  
  52.先读文件再写文件
  <%@ page language = "java" %>
  <%@ page contentType = "text/html; charSet=gb2312" %>
  <%@ page import ="java.util.*" %>
  <%@ page import ="java.lang.*" %>
  <%@ page import ="javax.servlet.*" %>
  <%@ page import ="javax.servlet.jsp.*" %>
  <%@ page import ="javax.servlet.http.*" %>
  <%@ page import="java.io.*" %>
  eryrytry
  <%
  int count=0;
  FileInputStream fi =new FileInputStream ("count.txt");
  ObjectInputStream si= new ObjectInputStream (fi);
  count =si.readInt();
  count++;
  out.print(count);
  si.close();
  
  FileOutputStream fo =new FileOutputStream ("count.txt");
  ObjectOutputStream so= new ObjectOutputStream (fo);
  so.writeInt(count);
  so.close();
  %>
  
  53.直线型输入框
  <INPUT name=Password size=10 type=password style="border-left-width: 0; border-right-width: 0;
  
  border-top-width: 0; border-bottom-style: solid; border-bottom-width: 1; background-color: #9CEB9C">
  
  54.可以将背景改为按钮性状,通过改变css改变属性
  <td width="65" align="
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师