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

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

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务
elect>
  
  31.改变背景颜色
  <td width=* class=dp bgColor=#FAFBFC onmouseover="this.bgColor='#FFFFFF';"
  
  onmouseout="this.bgColor='#FAFBFC';">
  
  32.改变文字输入框的背景颜色
  <style>
  .input2 {background-image: url('../images/inputbg.gif'); font-size: 12px; background-color:
  
  #D0DABB;border-top-width:1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
  </style>
  <input name=content type=text size="47" class="input2" maxlength="50">
  
  33.改变水平线的特征
  <hr size="0" noshade color="#C0C0C0">
  
  34.传递参数的方式
  <a href="vote.asp?CurPage=8&id=3488">8</a>
  
  35.页内跳转
  <a href="#1">1</a>
  <a href="#2">2</a>
  <a href="#3">3</a>
  <a href="#4">4</a>
  <a href="#5">5</a>
  <a href="#6">6</a>
  <a href="#7">7</a>
  <a name="1">dfdf</a>
  <a name="2">dfdf</a>//
  
  36.两个按键一起按下
  if(event.ctrlKey && window.event.keyCode==13)//
  
  37.刷新页面
  javascript:this.location.reload()//
  
  38.将网页的按钮使能
  <script LANGUAGE="Javascript">
  function haha()
  {
  for(var i=0;i<document.form1.elements.length;i++)
  {
   if(document.form1.elements[i].name.indexOf("bb")!=-1)
   document.form1.elements[i].disabled=!document.form1.elements[i].disabled;
  }
  }
  </script>
  <BODY><form name=form1>
  <INPUT TYPE="button" NAME="aa " value=cindy onclick=haha()>
  <INPUT TYPE="button" NAME="bb " value=guoguo>
  <INPUT TYPE="button" NAME="bb " value=guoguo>
  
  39.文字移动
  <marquee scrollamount=3 onmouseover=this.stop(); onmouseout=this.start();>
  
  40.双击网页自动跑
  <script LANGUAGE="Javascript">
  var currentpos,timer;
  function initialize()
  {
  timer=setInterval("scrollwindow()",1);
  }
  function sc()
  {
  clearInterval(timer);
  }
  function scrollwindow()
  {
  currentpos=document.body.scrollTop;
  window.scroll(0,++currentpos);
  if (currentpos != document.body.scrollTop)
   sc();
  }
  document.onmousedown=sc
  document.ondblclick=initialize
  </script>//
  
  41.后退
  <INPUT TYPE="button" onclick=window.history.back() value=back>
  
  42.前进
  <INPUT TYPE="button" onclick=window.history.forward() value=forward>
  
  43.刷新
  <INPUT TYPE="button" onclick=document.location.reload() value=reload>
  
  44.转向指定网页
  document.location="http://ww"或者document.location.assign("http://guoguo.com")
  
  45.在网页上显示实时时间
  <script LANGUAGE="Javascript">
  var clock_id;
  window.onload=function()
  {
  clock_id=setInterval("document.form1.txtclock.value=(new Date);",1000)
  }
  </script>//
  
  46.可以下载文件
  document.location.href="目标文件"//
  
  47.连接数据库
  import java.sql.*;
  String myDBDriver="sun.jdbc.odbc.JdbcOdbcDriver";
  Class.forName(myDBDriver);
  Connection conn=DriverManager.getConnection("jdbc:odbc:firm","username","password");
  Statement stmt=conn.createStatement();
  ResultSet rs=stmt.executeQuery(sql);
  rs.getString("column1");//
  
  48.可以直
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师