源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

js中事件的处理与浏览器对象示例介绍

  • 时间:2022-08-08 15:41 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js中事件的处理与浏览器对象示例介绍
[url=./styles.css]--> <script type="text/javascript"> function clickD(obj){ alert(obj.innerHTML); } function mouseD(obj){ obj.style.color = "#f00"; //当使用代码来设置样式时,如果css中通过-来表示的,都必须要用驼峰标示font-size -> fontSize obj.style.fontSize = "16px"; } function outD(obj){ obj.style.color = "#000"; obj.style.fontSize = "18px"; } //with的用法 with(document){ write("dddd<br/>"); } document.write("aaaa<br/>"); document.write("bbbb<br/>"); document.write("cccc<br/>"); </script> </head> <body> <div onclick="clickD(this)" style="cursor:pointer;">点击了试一下</div> <div onmouseover="mouseD(this)" onmouseout="outD(this)">鼠标移动来试试</div> </body> </html>
2,浏览器对象的例子:《涉及的是两个浏览器页面之间的传值》
[u]复制代码[/u] 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js01_hello</title> <meta name="author" content="Administrator" /> <script type="text/javascript"> function bless() { //获取输入的祝福语 var mb = document.getElementById("mb").value; //获取父类窗口 var p = window.opener; //获取父类窗口中的id为bless的div var pd = p.document.getElementById("bless"); //设置pd的值 pd.innerHTML = mb; //关闭当前窗口 window.close(); } </script> </head> <body> 输入祝福语:<input type="text" size="40" id="mb"/><input type="button" onclick="bless()" value="输入" /> </body> </html>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部