码迷,mamicode.com
首页 > Web开发 > 详细

与其放在电脑里占内存,还不如拿出来帮助一群小白白之html篇之十一

时间:2017-05-21 13:41:59      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:complete   als   小白   dcl   char   func   html   meta   cli   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js</title>
<style>
input{
margin: 10px;
width: 100px;
height: 30px;
}
</style>
</head>
<body>
<input id="button1" type="button" value="button1">
<input id="button2" type="button" value="动态添加事件" onclick="addClick(button1)">
<input type="button" value="提交" onclick="check()">
<script>
function addClick(obj){
obj.onclick=function(){
alert(‘动态添加事件成功‘);
}
}
</script>
<script>
function check(){
if(window.document.readyState==‘complete‘){
alert("加载完毕,可以继续");
return true;
}else{
alert("正在处理,请等待!");
return false;
}
}

</script>
</body>
</html>

与其放在电脑里占内存,还不如拿出来帮助一群小白白之html篇之十一

标签:complete   als   小白   dcl   char   func   html   meta   cli   

原文地址:http://www.cnblogs.com/mikou2017/p/6884529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!