最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

js中事件的處理與瀏覽器對象示例介紹

 更新時間:2013年11月29日 17:44:17   作者:  
本文為大家詳細介紹下js中關于簡單事件的處理與瀏覽器對象,下面有個不錯的示例,感興趣的朋友可以參考下
復制代碼 代碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>簡單的事件處理</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!--
<script language="text/javascript" src="hello.html">這個js的外部調用標簽不能自結束</script>
<link rel="stylesheet" type="text/css" href="./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,瀏覽器對象的例子:《涉及的是兩個瀏覽器頁面之間的傳值》
復制代碼 代碼如下:

<!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">
// setTimeout("endWelcome()",5000);
// function endWelcome() {
// document.getElementById("welcome").style.display = "none";
// }
</script>
</head>
<body>
<div id="welcome">歡迎進行我們的網站</div>
<a href="#" onclick="window.open('test02.html','aaa','width=300,height=300,resizable=0')">test02</a>
<a href="#" onclick="window.open('test03.html','aaa','width=400,height=400,resizable=0')">test03</a>
<br/>
<a href="#" onclick="window.open('bless.html','aaa','width=600,height=300')">輸入你祝福語</a>
<a href="#" onclick="window.open('bless.html','aaa','width=600,height=300')">選擇性別</a>
<div id="bless"></div>
</body>
</html>

復制代碼 代碼如下:

<!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>

相關文章

最新評論

嫩江县| 尉氏县| 温州市| 盖州市| 阳高县| 葫芦岛市| 榆林市| 吐鲁番市| 澄迈县| 阳信县| 扶绥县| 班戈县| 乌兰县| 泉州市| 定结县| 威远县| 洮南市| 佛山市| 绥阳县| 剑阁县| 莫力| 兴城市| 锦屏县| 邵阳县| 桐梓县| 文水县| 宁德市| 隆安县| 青浦区| 郸城县| 襄垣县| 上蔡县| 宁强县| 邵武市| 诸城市| 镇原县| 双流县| 电白县| 连山| 巴彦淖尔市| 云南省|