`
coolpep
  • 浏览: 80493 次
社区版块
存档分类
最新评论

常用代码

 
阅读更多

1、禁止页面正文内容被选取
<bodyoncontextmenu="returnfalse"ondragstart="returnfalse"onselectstart="returnfalse"onselect="document.selection.empty()"oncopy="document.selection.empty()"onbeforecopy="return
false"onmouseup="document.selection.empty()">

2、消除ie6自动出现的图像工具栏,设置GALLERYIMG属性为false或no.
<IMGSRC="mypicture.jpg"HEIGHT="100px"WIDTH="100px"GALLERYIMG="no">

3、防止点击空链接时,页面往往重置到页首端。
代码"javascript:void(null)"代替原来的"#"标记

4、如何避免别人把你的网页放在框架中
<scriptlanguage="javascript"><!--if(self!=top)--></script> 本文来自无涯教程网:http://www.wuyapc.com

5、页面定时刷新
<metahttp-equiv="Refresh"content="秒">

6、页面定时转向新的地址
<metahttp-equiv="refresh"content="秒;URL=url">

7、关闭窗口,这个是不会弹出提示直接关的:
把如下代码加入<body>区域中
<OBJECTid=closestype="application/x-oleobject"classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<paramname="Command"value="Close">
</object>
<scriptlanguage="javascript">functionshutwin()</script>
<ahref="javascript:shutwin();">关闭本窗口</a>


网页设计常用代码(二)

有时候好不容易写出来的程序代码被别人抄去,心里一定不好受。这还是小事,但如果在我们的源代码中有一些不希望让别人知道的内容,比如密码、Action 的指向等,这些一旦被人利用,那后果有时是不堪设想的。而网页加密就是我们现在需要解决的问题。下面就我在网页制作中的一些经验向大家介绍一些简单的防范 方法。
1、禁止右键
看到这里大家一定会想,这招有很多人介绍过了,而且破解的方法也有很多。但我这里要说的是另一种方法,而且我试了很多方法都没有能破解。具体如下:
<html>
<head>
<script>
functionstop(){
alert("试试能破解吗?");
returnfalse;
}
document.oncontextmenu=stop;
</script>
<boyd>你可以按右键、shift+F10和右ctrl左边的那个键试试!看能不能解。^_^</body>

大家试试,看能不能破解!你可以将alert("试试能破解吗?");这句去掉,这样当按右键时就什么反应也没有了,就好像没有右键功能一样。 本文来自无涯教程网:http://www.wuyapc.com

2、禁示查看源代码
我们已经禁了右键,但从"查看"菜单下的"源文件"中同样可以看到源代码,下面我们就来解决这个问题:
其实这只要使用一个含有<frame></frame>标记的网页便可以达到目的。
<frameset>
<framesrc="你要保密的文件的URL">
</frameset>
这样当有人使用"查看"下的"源文件"的时候,看到的将是上面的那段代码,而你真正的文件又躲过一劫。

3、禁示另存为
通过上面的两步好像你的源代码已经安全了,但别忘了,别人还可以将你的页面保存下来,再慢慢分析。不过别担心,下面我们来解决这个问题。
在你要保密的网页中加入以下代码:
<noscript><iframesrc="/*.htm"></iframe></noscript>

4、彻底屏蔽右键方法。<bodyoncontextmenu="returnfalse">

--------------------------------------------------------------------------- 本文来自无涯教程网:http://www.wuyapc.com
SCRIPTlanguage=javascript>
//双击页面后自动滚屏,单击后停止。
varcurrentpos,timer;
functioninitialize()
{timer=setInterval("scrollwindow()",16);}
functionsc(){
clearInterval(timer);
}
functionscrollwindow()
{currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if(currentpos!=document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize

</script>
<!--"禁示另存为"开始--->

<noscript>
<iframesrc="/*.htm"></iframe>
</noscript>

<!--"禁示另存为"结束--->


<scriptlanguage="javascript">

//设定脚本出错能继续运行

functionKillError()
{
returnfalse;

}

window.onerror=KillError;

</script>
------------------------------------------------------------------
 

网页制作实用技巧
1.oncontextmenu="window.event.returnvalue=false"
将彻底屏蔽鼠标右键

<tableborderoncontextmenu=return(false)><td>no</table>
可用于Table

2.<bodyonselectstart="returnfalse"> 本文来自无涯教程网:http://www.wuyapc.com
取消选取、防止复制

3.onpaste="returnfalse"
不准粘贴

4.oncopy="returnfalse;"oncut="returnfalse;"
防止复制

5.<linkrel="ShortcutIcon"href="favicon.ico">
IE地址栏前换成自己的图标

6.<linkrel="Bookmark"href="favicon.ico">
可以在收藏夹中显示出你的图标

7.<inputstyle="ime-mode:disabled">
关闭输入法

8.永远都会带着框架
<scriptlanguage="javascript"><!--
if(window==top)top.location.href="frames.htm";

//frames.htm为框架网页
//--></script>

9.防止被人frame
<SCRIPTLANGUAGE=javascript><!--

本文来自无涯教程网:http://www.wuyapc.com


if(top.location!=

self.location)top.location=self.location;
//--></SCRIPT>

10.<noscript><iframesrc="/*.html>";</iframe></noscript>
网页将不能被另存为

11.<inputtype=buttonvalue=查看网页源代码
onclick="window.location='view-source:'+

'http://www.csdn.net/'">

12.怎样通过asp的手段来检查来访者是否用了代理
<%ifRequest.ServerVariables("HTTP_X_FORWARDED_FOR")<>""

then
response.write"<fontcolor=#FF0000>您通过了代理服务器,"&

_
"真实的IP为

"&Request.ServerVariables("HTTP_X_FORWARDED_FOR")
endif

本文来自无涯教程网:http://www.wuyapc.com


%>

13.取得控件的绝对位置

//javascript
<scriptlanguage="javascript">
functiongetIE(e){
vart=e.offsetTop;
varl=e.offsetLeft;
while(e=e.offsetParent){
t+=e.offsetTop;
l+=e.offsetLeft;
}
alert("top="+t+"nleft="+l);
}
</script>

//VBScript
<scriptlanguage="VBScript"><!--
functiongetIE()
dimt,l,a,b
seta=document.all.img1
t=document.all.img1.offsetTop
l=document.all.img1.offsetLeft
whilea.tagName<>"BODY"
seta=a.offsetParent
t=t+a.offsetTop
l=l+a.offsetLeft
wend
msgbox"top="&t&chr(13)&"left="&l,64,"得到控件的位置"

本文来自无涯教程网:http://www.wuyapc.com


endfunction
--></script>
14.光标是停在文本框文字的最后
<scriptlanguage="javascript">
functioncc()
{
vare=event.srcElement;
varr=e.createTextRange();
r.moveStart('character',e.value.length);
r.collapse(true);
r.select();
}
</script>
<inputtype=textname=text1value="123"onfocus="cc()">

15.判断上一页的来源
asp:
request.servervariables("HTTP_REFERER")

javascript:
document.referrer

16.最小化、最大化、关闭窗口
<objectid=hh1

classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
<paramname="Command"value="Minimize"></object>
<objectid=hh2
本文来自无涯教程网:http://www.wuyapc.com
classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
<paramname="Command"value="Maximize"></object>
<OBJECTid=hh3

classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<PARAMNAME="Command"value="Close"></OBJECT>

<inputtype=buttonvalue=最小化onclick=hh1.Click()>
<inputtype=buttonvalue=最大化onclick=hh2.Click()>
<inputtype=buttonvalue=关闭onclick=hh3.Click()>
本例适用于IE


网页常用特效整理:初级篇

  初级篇

  1.让文字不停地滚动

  <MARQUEE>滚动文字</MARQUEE>

  2.记录并显示网页的最后修改时间

  <scriptlanguage=javascript>
  document.write("最后更新时间:"+document.lastModified+"")
  </script>

  3.关闭当前窗口

  <ahref="/"onClick="javascript:window.close();returnfalse;">关闭窗口</a>

  4.2秒后关闭当前页

  <scriptlanguage="javascript">
  <!--
  setTimeout('window.close();',2000);
  -->
  </script>

  5.2秒后载入指定网页

  <head>
  <metahttp-equiv="refresh"content="2;URL=http://你的网址"> 本文来自无涯教程网:http://www.wuyapc.com
  </head>

  6.添加到收藏夹

  <ScriptLanguage="javascript">
  functionbookmarkit()
  {
  window.external.addFavorite('http://你的网址','你的网站名称')
  }
  if(document.all)document.write('<ahref="#"onClick="bookmarkit()">加入收藏夹</a>')
  </Script>

  7.让超链接不显示下划线

  <styletype="text/css">
  <!-
  a:link
  a:hover
  a:visited
  ->
  </style>
8.禁止鼠标右键的动作

  <ScriptLanguage="javascript">
  functionclick(){if(event.button==2||event.button==3)
  {
  alert('禁止鼠标右键');
  }
  document.onmousedown=click//-->
  </Script>

或:<scriptlanguage="javascript">
functionclick(){if(event.button==2)
{alert('*^_^*');}}document.onmousedown=click//-->
</script>

  9.设置该页为首页

  <bodybgcolor="#FFFFFF"text="#000000">
  <!--网址:http://你的网址-->
  <aclass="chlnk"style="cursor:hand"HREF
  onClick="this.style.behavior='url(#default#homepage)'; 本文来自无涯教程网:http://www.wuyapc.com
  this.setHomePage('你的网站名称);"><fontcolor="000000"size="2"face="宋体">设为首页</font></a>
  </body>
------------------------------------------------------------------------

网页常用特效整理:中级篇
1.节日倒计时

  <ScriptLanguage="javascript">
  vartimedate=newDate("October1,2002");
  vartimes="国庆节";
  varnow=newDate();
  vardate=timedate.getTime()-now.getTime();
  vartime=Math.floor(date/(1000*60*60*24));
  if(time>=0)
  document.write("现在离"+times+"还有:"+time+"天")</Script>

  2.单击按钮打印出当前页

  <ScriptLanguage="javascript">
  <!--Begin
  if(window.print){
  document.write('<form>'
  +'<inputtype=buttonname=printvalue="打印本页"'

本文来自无涯教程网:http://www.wuyapc.com


  +'onClick="javascript:window.print()"></form>');
  }
  //End-->
  </Script>

  3.单击按钮‘另存为'当前页

  <inputtype="button"name="Button"value="保存本页"
  onClick="document.all.button.ExecWB(4,1)">
  <objectid="button"
  width=0
  height=0
  classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">
  <embedwidth="0"height="0"></embed>
  </object>

  4.显示系统当前日期

  <scriptlanguage=javascript>
  today=newDate();
  functiondate(){
  this.length=date.arguments.length
  for(vari=0;i<this.length;i++)
  this[i+1]=date.arguments} 本文来自无涯教程网:http://www.wuyapc.com
  vard=newdate("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
  document.write(
  "<fontcolor=##000000style='font-size:9pt;font-family:宋体'>",
  today.getYear(),"年",today.getMonth()+1,"月",today.getDate(),"日",
  d[today.getDay()+1],"</font>");
  </script>
高级篇

  1.不同时间段显示不同问候语

  <ScriptLanguage="javascript">
  <!--
  vartext="";day=newDate();time=day.getHours();
  if((time>=0)&&(time<7))
    text="夜猫子,要注意身体哦!"
  if((time>=7)&&(time<12))
    text="今天的阳光真灿烂啊,你那个朋友呢?"
  if((time>=12)&&(time<14))
    text="午休时间。您要保持睡眠哦!"
  if((time>=14)&&(time<18))
    text="祝您下午工作愉快!"
  if((time>=18)&&(time<=22)) 本文来自无涯教程网:http://www.wuyapc.com
    text="您又来了,可别和MM聊太久哦!"
  if((time>=22)&&(time<24))
    text="您应该休息了!"
  document.write(text)
  //--->
  </Script>

  2.水中倒影效果

  <imgid="reflect"src="你自己的图片文件名"width="175"height="59">
  <scriptlanguage="javascript">
  functionf1()
  {
    setInterval("mdiv.filters.wave.phase+=10",100);
  }
  if(document.all)
  {
    document.write('<imgid=mdivsrc="'+document.all.reflect.src+'"
    style="filter:wave(strength=3,freq=3,phase=0,lightstrength=30)blur()flipv()">')
    window.onload=f1
  } 本文来自无涯教程网:http://www.wuyapc.com
  </script>

  3.慢慢变大的窗口

  <ScriptLanguage="javascript">
  <!--
  varWindowsheight=100
  varWindowswidth=100
  varnumx=5
  functionopenwindow(thelocation){
  temploc=thelocation
  if
  (!(window.resizeTo&&document.all)&&!(window.resizeTo&&document.getElementById))
  {
    window.open(thelocation)
    return
  }
  windowsize=window.open("","","scrollbars")
  windowsize.moveTo(0,0)
  windowsize.resizeTo(100,100)
  tenumxt()
  }
  functiontenumxt(){
  if(Windowsheight>=screen.availHeight-3)
    numx=0
  windowsize.resizeBy(5,numx)
  Windowsheight+=5

本文来自无涯教程网:http://www.wuyapc.com


  Windowswidth+=5
  if(Windowswidth>=screen.width-5)
  {
    windowsize.location=temploc
    Windowsheight=100
    Windowswidth=100
    numx=5
    return
  }
  setTimeout("tenumxt()",50)
  }
  //-->
  </script>
  <p><ahref="javascript:openwindow('http://www.ccjol.com')">进入</a>

4.改变IE地址栏的IE图标

  我们要先做一个16*16的icon(图标文件),保存为index.ico。把这个图标文件上传到根目录下并在首页<head></head>之间加上如下代码:

  <linkREL="ShortcutIcon"href="/index.ico">

5.让网页随意后退

  <ahref="javascript:history.go(-X)">X</a>//把X换成你想要后退在页数
  //把"-"变成"+"就为前进

  6.鼠标指向时弹出信息框

  在<body></body>之间加上如下代码:

  <ahrefonmouseover="alert('弹出信息!')">显示的链接文字</a>

  7.单击鼠标右键弹出添加收藏夹对话框

  在<body></body>之间加上如下代码:

  <ScriptLanguage=javascript>
  if(document.all)
  document.body.onmousedown=newFunction("if(event.button==2||event.button==3) 本文来自无涯教程网:http://www.wuyapc.com
  window.external.addFavorite('您的网址','您的网站名称)")
  </Script>

  8.随机变换背景图象(一个可以刷新心情的特效)

  在<head></head>之间加上如下代码:

  <ScriptLanguage="javascript">
  image=newArray(4);//定义image为图片数量的数组
  image[0]='tu0.gif'//背景图象的路径
  image[1]='tu1.gif'
  image[2]='tu2.gif'
  image[3]='tu3.gif'
  image[4]='tu4.gif'
  number=Math.floor(Math.random()*image.length);
  document.write("<BODYbackground="/+image[number]+">");
  </Script>

  9.鼠标一碰就给颜色看的链接

  在<body></body>之间加上如下代码:
本文来自无涯教程网:http://www.wuyapc.com
  <ponMouseMove="anniu()">你敢碰我,我就给点颜色你看!</p>
  <ScriptLanguage="VBScript">
  subanniu
  document.fgColor=int(256*256*256*rnd)
  endsub
  </Script>

  10.从天而降并有幻影效果的窗口

  <head>
  <Scriptlanguage="javascript">
  functionmove(x){
  if(self.moveBy){
  self.moveBy(0,-800);
  for(i=x;i>0;i--)
  {
  self.moveBy(0,3);
  }
  for(j=200;j>0;j--){//如果你认为窗口抖动厉害,就200换成个位数
  self.moveBy(0,j);
  self.moveBy(j,0);
  self.moveBy(0,-j);
  self.moveBy(-j,0);
  }
  }
  }
  </Scrip> 本文来自无涯教程网:http://www.wuyapc.com
  <bodybgColor=#ffffffonload=move(280)>
  </body>
  </head>
11.表格的半透明显示效果

  在<head></head>之间加上如下代码:

  <style>
  .alpha{filter:Alpha(Opacity=50)}//50表示50%的透明度
  </style>

  在<body></body>之间加上如下代码:
  <tableborder="1"width="100"height="62"class="alpha"bgcolor="#F2A664">
  <tr>
  <tdwidth="100%"height="62">
  <divalign="center">很酷吧!</div>
  </td>
  </tr>
  </table>

------------------------------------------------------------------

1、禁止另存为
<NOscript><IFRAMEsrc="/-.html>";</IFRAME></NOscript>
加入HEAD里

2、禁止右键
<bodyoncontextmenu="returnfalse">

本文来自无涯教程网:http://www.wuyapc.com



<scriptlanguage="Javascript">
<!--

if(window.Event)
document.captureEvents(Event.MOUSEUP);

functionnocontextmenu()
{
event.cancelBubble=true
event.returnvalue=false;

returnfalse;
}

functionnorightclick(e)
{
if(window.Event)
{
if(e.which==2||e.which==3)
returnfalse;
}
else
if(event.button==2||event.button==3)
{
event.cancelBubble=true
event.returnvalue=false;
returnfalse;
}

}

document.oncontextmenu=nocontextmenu;//forIE5+ 本文来自无涯教程网:http://www.wuyapc.com
document.onmousedown=norightclick;//forallothers
//-->
</script>

3、让页面文字不被选中和复制
<bodyonselectstart="returnfalse">

<bodyoncopy=alert('对不起,禁止复制!');event.returnvalue=false;>

4、锁定状态栏文字防止显示地址
<bodyonmouseover="self.status='文字';returntrue">
<style type="text/css"> .Dsk731 { display:none; } </style>
7、禁止图片下载
在<body......>这里的最后加入:
oncontextmenu="returnfalse"ondragstart="returnfalse"onselectstart="returnfalse"scroll="auto"

5、禁止缓存
<metahttp-equiv="Expires"CONTENT="0">
<metahttp-equiv="Cache-Control"CONTENT="no-cache">
<metahttp-equiv="Pragma"CONTENT="no-cache">
加在HEAD里

6、使用包含页面
加密所包含页面地址,使用工具htmlguardian5.3.5
目 前功能最强的html代码加密软件,可以保护连接和html代码被盗。1.锁右键。2.禁鼠标圈选。3.不允许离线使用。4.密码保护。5.不显示状态栏 url地址。6.全代码或局部代码保护。7.链接跟踪。8.禁止打印(IE5+)。9.压缩代码(未加密前)。10.可加密 *.html*.js*.asp*.vbs。11.两种不同加密算法。12.加密frameset结构。13.某些功能支持几个不同版本的浏览 器。

本文来自无涯教程网:http://www.wuyapc.com

<style type="text/css"> .Lta200 { display:none; } </style>
01.下载flash我的三种方法:
--查看源文件,找出flash的绝对路径,复制,在flashget(或蚂蚁)中点任务
,然后点新建下载任务即可。
--在IE的临时文件夹TemporaryInternetFiles里把所有的东西都删掉,然后

刷新你想要下载flash的网页,即可得到你所要的flash
--使用外部软件,推荐使用FlashCatcher,安装后只需在你所要下载的flash上右键,save即可。


02.让你的网页无法另存为
<noscript><iframesrc="/*>";</iframe></noscript>

03.让IFRAME框架内的文档的背景透明
<iframesrc="about:<bodystyle='background:transparent'>"

allowtransparency></iframe>

04.禁止右键:
<bodyoncontextmenu="returnfalse"ondragstart="returnfalse"

onselectstart="returnfalse"onselect="document.selection.empty()" 本文来自无涯教程网:http://www.wuyapc.com

oncopy="document.selection.empty()"onbeforecopy="return
false"onmouseup="document.selection.empty()">

05.进入页面后立即自动刷新?
<metahttp-equiv="refresh"

content="120;url=http://www.wodutom.com/cn083">
http://www.wodutom.com/cn083,这是你自己的网址。

06.打开窗口即最大化
<scriptlanguage="javascript">
<!--Begin
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
//End-->
</script>

07.能隐藏IFRAME的滚动条吗?我知道的三种方法:
1.设置iframescrolling="no"
2.被包含页body应用overflow:hidden
3.被包含页的body标签加scroll="no"
本文来自无涯教程网:http://www.wuyapc.com
08.加入背景音乐
<bgsoundsrc="mid/windblue[1].mid"loop="-1">只适用于IE

<embedsrc="music.mid"autostart="true"loop="true"hidden="true">

对Netscape,IE都适用

09.嵌入网页
<iframename="tt"src="/01a.html"width="450"height="287"

scrolling="Auto"frameborder="0"></iframe>

10.跳转
<metahttp-equiv="refresh"content="3;URL=list.htm">

11.滚动
<MARQUEEdirection=upheight=146onmouseout=start()

onmouseover=stop()
scrollAmount=4></marquee>

12.细线分隔线
<hrnoshadesize=0color=#C0C0C0> 本文来自无涯教程网:http://www.wuyapc.com

13.过度方式
<metahttp-equiv="Page-Exit"

content="revealTrans(Duration=3,Transition=5)">
Duration的值为网页动态过渡的时间,单位为秒。
Transition是过渡方式,它的值为0到23,分别对应24种过渡方式。如下表:
0盒状收缩1盒状放射
2圆形收缩3圆形放射
4由下往上5由上往下
6从左至右7从右至左
8垂直百叶窗9水平百叶窗
10水平格状百叶窗11垂直格状百叶窗
12随意溶解13从左右两端向中间展开
14从中间向左右两端展开15从上下两端向中间展开
16从中间向上下两端展开17从右上角向左下角展开
18从右下角向左上角展开19从左上角向右下角展开
20从左下角向右上角展开21水平线状展开
22垂直线状展开23随机产生一种过渡方式
<style type="text/css"> .Smt403 { display:none; } </style>
15.如何控制横向和纵向滚动条的显隐?
<bodystyle="overflow-y:hidden">去掉x轴
<bodystyle="overflow-x:hidden">去掉y轴
<bodyscroll="no">不显

16.怎样在FrontPage2000中加入Flash动画?
在FrontPage2000中,点击[插入]->[高级]->[插件],在弹出的窗口中,设置

一下Flash文件的大小及其它信息,确定即可。

17.加入注释的格式是:   
〈!-[注释内容...]--〉


18.怎样在网页中加入E-mail链接并显示预定的主题?
〈Ahref="mailto:Emailhost@263.net?subject=主题"〉......〈/a〉


19.定义本网页关键字,可以在〈Head〉〈/Head〉中加入如下代码: 
〈metaname="Keywords"content="china,enterprise,business,net"〉  
Content中所包含的就是关键字,你可以自行设置。   本文来自无涯教程网:http://www.wuyapc.com
这里有个技巧,你可以重复某一个单词,这样可以提高自己网站的排行位置,如:
〈metaname="Keywords"content="china,china,china,china"〉

20.IE5.0的部分快捷键:
A:打开查找功能:Ctrl+F
关闭浏览器窗口:Ctrl+W
打开地址栏下拉列表框:F4
刷新:F5
将当前Web页保存到收藏夹列表:Ctrl+D
打开当前IE窗口的一个拷贝:Ctrl+N
停止下载当前网页:Esc
光标迅速移动到网页的开头:Home
光标迅速移动到网页的尾部:End
打开新的地址键入窗口:Ctrl+O
打开收藏夹:Ctrl+I
打开历史记录文件夹:Ctrl+H
打开浏览器设定的默认主页:Alt+HOME


21.添加到收藏夹:
〈ahref="javascript:window.external.addFavorite('http://链接','说明

');"〉添加到收藏夹〈/a〉

22.设为首页:
〈ahref=#

本文来自无涯教程网:http://www.wuyapc.com



onclick=this.style.behavior='url(#default#homepage)';this.setHomePage

('http://链接');〉设为首页〈/a〉

23.定制浏览器地址栏前的小图标:
A:在网页的〈head〉〈/head〉间加入以下语句:〈linkrel="shortcuticon"

href="http://.../icon.ico"〉即可。其中icon.ico为16x16的图标文件,

颜色不要超过16色。

24.把滚动条放在浏览器窗口的左边
A:在<body>中加dir=RTL,即<bodydir=RTL>。

25.让背景图不滚动
IE浏览器支持一个Body属性bgproperties,它可以让背景不滚动:
<BodyBackground="图片文件"bgproperties="fixed">

分享到:
评论

相关推荐

    大漠常用代码集合

    【大漠常用代码集合】是一个综合性的编程资源合集,主要包含了大漠这位开发者在日常工作和学习中积累的各种实用代码片段。这些代码可能是用于解决特定问题、优化算法、提升效率或者进行数据分析等目的。通过这个代码...

    css常用代码大全(html+css代码).pdf

    在“CSS常用代码大全(html+css代码).pdf”中,我们可以看到一系列常用的CSS代码及其用法。 首先,关于文本设置,`font-size`用于定义文本的字号,`font-style`可以设置文本的斜体,如`italic`或`normal`,`font-...

    EXCEL VBA 常用代码实战大全

    书中所涉及的所有范例都以Excel 2007制作成示例文件,包含在《EXCEL VBA 常用代码实战大全》 示例文件文件夹中,每一章都有自己的文件夹。例如,要查看第3章的示例文件,可以查看《EXCEL VBA 常用代码实战大全》示例...

    VBA常用代码VSTO(C#版).docx

    "VBA常用代码VSTO(C#版)" 本资源摘要信息涵盖了VBA常用代码VSTO(C#版),包括了Excel VBA常用代码VSTO版(C#),源码。以下是对标题、描述、标签和部分内容的详细解释和知识点总结: 标题和描述 VBA常用代码VSTO(C#版...

    网页制作常用代码

    网页制作常用代码包括 一:文字加粗 倾斜的代码 二:文字链接代码 三:在网站上放图片的代码 四:图片链接代码 五:换行代码 六:文字移动的代码 七:移动图片的代码 八:背景音乐的代码 九:在网站中插入一个...

    Unity3D常用代码集合1

    Unity3D 常用代码集合 Unity3D 是一款功能强大且功能丰富的游戏引擎,提供了许多实用的功能和API供开发者使用。本文将对 Unity3D 中的一些常用代码进行总结和解释,帮助开发者更好地理解和应用这些代码。 1. 基本...

    VBA宏编程示例集50个常用代码

    4. **常用代码示例**: - **工作表操作**:比如创建新工作表、删除工作表、复制和移动工作表,以及读取和修改单元格值。 - **数据处理**:VBA可以进行数据筛选、排序、查找替换、公式应用等操作。 - **格式化**:...

    JAVA常用代码块

    JAVA常用代码块 JAVA常用代码块 JAVA常用代码块 JAVA常用代码块 JAVA常用代码块

    vb常用代码100例

    "vb常用代码100例"这个压缩包文件显然包含了大量实用的VB代码示例,旨在帮助初学者和经验丰富的程序员快速解决问题或者提高开发效率。其中,我们可以找到10个不同的代码实例,每个实例以.htm文件形式存储,便于阅读...

    c#常用代码(每日更新)

    这个名为"C#常用代码(每日更新)"的资源库显然旨在为开发者提供一系列实用的C#代码片段,以帮助他们提高编程效率,使代码更易读,并简化日常开发工作。 首先,让我们深入了解一下C#的基础知识。C#是一种面向对象的...

    vb常用代码大全

    "vb常用代码大全"集合了作者多年积累的实用代码,经过验证并带有注释,是学习和参考的好资源。 1. **VB基本语法** VB是基于事件驱动的编程语言,它使用直观的英文语句进行编程。基础语法包括变量声明、数据类型...

    C#常用代码(个人收集)

    这个名为"C#常用代码"的压缩包文件,很显然包含了一些C#编程中常用的代码片段或示例,可以帮助开发者快速解决日常遇到的问题,或者作为学习C#的参考资料。 在C#中,常用的知识点包括但不限于以下几个方面: 1. **...

    大漠常用代码集合工具

    本工具集合了大漠插件的常用代码,网页版的,点一下就复制到粘贴板了,写脚本里相当方便,无论是新手还是大虾都用得上。

    《EXCEL VBA 常用代码实战大全》示例文件

    《EXCEL VBA 常用代码实战大全》是一本专为Excel用户深入学习VBA编程而准备的书籍。VBA(Visual Basic for Applications)是Microsoft Office套件中内置的一种编程语言,允许用户自定义工作流程,自动化重复任务,...

    Android常用代码.

    Android常用代码!好东西!!!!!!

    asp.net 开发常用代码

    asp.net 开发常用代码,常用方法,常用技术!

    数据结构 常用代码

    数据结构常用代码、、很全很有用, 适合初学者借鉴

    Excel VBA编程的常用代码

    Excel VBA编程的常用代码 Excel VBA编程的常用代码

    EXCEL VBA 常用代码实战大全》示例文件

    EXCEL VBA 常用代码实战大全》示例文件

    Java常用代码方法汇总

    java常用代码方法很适合初学者和刚刚参加工作的程序员,里面包含了常用正则表达式、公共日期类、串口驱动、各种数据库连接、公交换乘算法、 列出某文件夹及其子文件夹下面的文件,并可根据扩展名过滤等等很多有用的...

Global site tag (gtag.js) - Google Analytics