第二天:Javascript事件

Posted fenr9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二天:Javascript事件相关的知识,希望对你有一定的参考价值。

事件:是可以被javascript侦测到的行为,例如鼠标的点击,鼠标的移动,常见的事件如下

 

代码实现“点击事件”:
<body>
<button onclick="demo()">按钮</button>
<script>
function demo(){
alert("hello");
}
</script>
</body>
运行结果:点击画面的按钮,弹出框 hello

代码实现“鼠标经过”:

1)style.css内容如下:
div{
width: 100px;
height: 100px;
font-weight:bold;">crimson;
}

2)testjstty3.html内容如下:
<head>
<meta charset="UTF-8">
<title>事件</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div clsss="div" onmouseout="onOut(this)" onmouseover="onOver(this)"> </div>
<script>
function onOut(ooj){

ooj.innerhtml="hello";
}
function onOver(ooj){
ooj.innerHTML="world";
}
</script>

运行结果:移动经过时,小红方框出现world;鼠标移出后,出现hello


文本改变事件:
<body onload="msg()">              //网页下载完成事件,事件时在body中写的
<div clsss="div" onmouseout="onOut(this)" onmouseover="onOver(this)"> </div>
<script>
function onOut(ooj){

ooj.innerHTML="hello";
}
function onOver(ooj){
ooj.innerHTML="world";
}
</script>
<form>
<input type="text" onchange="changeDemo(this)"> //在文本框输入内容后,弹出框对话框,提示内容改变了
</form>
<script>
function changeDemo(bg){
alert("内容改变了");
}
</script>
<form>
<input type="text" onselect="selectDemo(this)"onfocus="focusDemo(this)"> //鼠标点击文本框,文本框变成绿色

</form>
<script>
        //鼠标选中文本框中的文字,文本框变成绿色

function selectDemo(bg){

bg.style.backgroundColor= "red";
}
function focusDemo(bg){
bg.style.backgroundColor= "green";
}
function msg(){
alert("网页内容下载完毕");
}
</script>
 


以上是关于第二天:Javascript事件的主要内容,如果未能解决你的问题,请参考以下文章

学习WEBAPI(DOM)第二天

查找一天中事件的开始时间和结束时间 - Pandas 时间序列 - 这样结束时间不会落入第二天

移动web开发---第二天

三天学会ZooKeeper第二天(全网最细)

物联网服务NodeJs-5天学习第二天篇② —— 网络编程(TCPHTTPWeb应用服务)

JavaScript第三周学习