JavaScript封闭函数及常用内置对象示例
(编辑:jimmy 日期: 2024/11/3 浏览:3 次 )
本文实例讲述了JavaScript封闭函数及常用内置对象。分享给大家供大家参考,具体如下:
封闭函数
在封闭函数内部定义的函数与外部函数尽管同名也没有关系,同理,定义的变量也可以同名。
封闭函数的写法,一是加括号,一是加感叹号。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>封闭函数</title> <script type="text/javascript"> var num = 22; function f() { alert("hello "); } (function () { var num = 11; function myalter() { alert("hello world"); } alert(num); myalter() })(); /*封闭函数的第二种写法,前面加一个感叹号或者加一个波浪线*/ !function(){ alert("ll"); }(); alert(num) </script> </head> <body> <div> 55 </div> </body> </html>
常用内置对象
1.document
document.getElemntsByTagName 通过标签名获取元素
document.getElementsById 通过id获取元素
document.referrer 获取上一个跳转页面的地址
2.location
window.location.href 获取或者重定向url地址
window.location.search 获取地址参数部分
window.location.hash 获取页面锚点或者叫hash值
<meta charset="UTF-8"> <title>常用内置对象</title> <script type="text/javascript"> /* * 1.document * document.getElemntsByTagName 通过标签名获取元素 * document.getElementsById 通过id获取元素 * document.referrer 获取上一个跳转页面的地址 * * 2.location * window.location.href 获取或者重定向url地址 * window.location.search 获取地址参数部分 * window.location.hash 获取页面锚点或者叫hash值 * * */ window.onload = function () { var sUrl = document.referrer; /*获取服务器地址,或者说上一个页面地址*/ var oBtn = document.getElementById("btn01"); oBtn.onclick = function () { window.location.href = sUrl; /*但是因为不是服务器地址所以存不下来,这边可以直接写百度网址的字符串*/ }; var oBody = window.getElementById('body01'); var sData = window.location.search; /*http://localhost:63342/Javascirpt/%E5%B8%B8%E7%94%A8%E5%86%85%E7%BD%AE%E5%AF%B9%E8%B1%A1.html"="); var iNum = aRr[1]; if (iNum == 1) { oBody.style.backgroundColor = "gold"; } // if(sData!=null) // { // alert(sData); // } alert(sData); /*获取地址参数*/ } </script> </head> <body id='body01'> <input type="button" name="" value="跳转" id="btn01"> </body> </html>
http://localhost:63342/Javascirpt/常用内置对象.html"htmlcode">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <a href="常用内置对象.html" rel="external nofollow" >链接到常用内置对象的页面</a> <a href="常用内置对象.html" rel="external nofollow" >链接到常用内置对象的页面1</a> <a href="常用内置对象.html" rel="external nofollow" >链接到常用内置对象的页面2</a> <a href="常用内置对象.html" rel="external nofollow" >链接到常用内置对象的页面3</a> </body> </html>
传递不同的参数改变页面的状态。
更多关于JavaScript相关内容可查看本站专题:《JavaScript常用函数技巧汇总》、《javascript面向对象入门教程》、《JavaScript错误与调试技巧总结》、《JavaScript数据结构与算法技巧总结》及《JavaScript数学运算用法总结》
希望本文所述对大家JavaScript程序设计有所帮助。
下一篇:vue 表单之通过v-model绑定单选按钮radio