javascript代码大全,基础代码详解

TheDisguiser 2020-05-21 20:29:25 java常见问答 10119

JavaScript大家都知道吧,常用的web脚本语言,这次小编这里整理了一些常用的JavaScript代码,一起来看看吧。

一、输入框禁止中文输入

<input type="text" style="ime-mode:Disabled;">

二、设置一个简单按钮作为链接

< INPUT TYPE = "submit"
value = "ABCnet.CN"
οnclick = "location.href='http://www.abcnet.cn'" >

三、按扭打开Web页对话框

< INPUT TYPE = "BUTTON"
NAME = "Button"
VALUE = "ABCnet.CN"
οnclick = "showModalDialog('http://www.abcnet.cn')" >

四、改变IE地址栏图标

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

<link REL = "Shortcut Icon" href="index.ico">
  
  <link rel="Bookmark" href="favicon.ico">

可以在收藏夹中显示出你的图标

五、让网页随意后退

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

六、关闭当前窗口

<a href="/"onClick="javascript:window.close();return false;">关闭窗口</a>

七、2秒后关闭当前页

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

八、2秒后载入指定网页

<head>
  <meta http-equiv="refresh" content="2;URL=http://你的网址">
  </head>

九、添加到收藏夹

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

十、设置该页为首页

<a class="chlnk" style="cursor:hand" HREF
  onClick="this.style.behavior='url(#default#homepage)';
  this.setHomePage('你的网站名称);">设为首页</a>

十一、去掉图片链接点击周围虚线

<a href = "#"onFocus = "this.blur()" > <img src="logo.jpg" border=0></a>

十二、电子邮件处理提交表单

  <
    form name = "form1"
method = "post"
action = "mailto***@***.com"
enctype = "text/plain" >
    <input type=submit> 
 
</form>

十三、子窗口里刷新父窗口

window.opener.location.reload()

十四、设置新开页面大小

<
    body οnlοad = "top.resizeTo(300,200);" >
    打开页面的位置 < body οnlοad = "top.moveBy(300,200);" >
    27. 在页面中如何加入不是满铺的背景图片, 拉动页面时背景图不动 <
    style >
    body
    {
        ;;
        "; 
        autourl[4] = "http://www.nuaa.edu.cn/";
        autourl[5] = "http://www.cctv.com/";
        
        function butt()
        {
            document.write("<form name=autof>"
                    for (var i = 1; i < autourl.length; i++)
                        document.write("<input type=text name=txt" + i + " size=10 value=测试中……> =》<input type=text  
                            name = url "+i+"
                            size = 40 > = 》<input type=button value=GO  
οnclick=window.open(this.form.url"+i+".value)><br>" 
document.write("<input type=submit value=刷新></form>" 
 
} 
butt() 
function auto(url){ 
document.forms[0]["url"+b].value=url 
  if(tim>200) 
{document.forms[0]["txt"+b].value="链接超时"} 
else 
{document.forms[0]["txt"+b].value="时间"+tim/10+"秒"} 
 
b++ 
} 
function run(){for(var i=1;i<autourl.length;i++)document.write("<img  
src=http://"+autourl+"/"+Math.random()+" width=1 height=1  
οnerrοr=auto(http://";+autourl+"`)>"} 
run()</script>

 以上就是一些JavaScript基础代码详解了,如果需要了解更多java入门知识,请关注我们的网站吧。

推荐阅读:

javascript:void(0)什么意思?如何解决呢?

javascript啥意思?是什么意思?

javascript菜鸟教程