····
<html>
<head>
<script>
/*
setTimeout 设置过期时间
setTimeout(时间到了之后要执行的行为,什么时间 毫秒 开始执行)
setInterval 设置中断时间
setInterval(时间到了之后要执行的行为 , 间隔多长时间再执行 )
*/
</html>
····
2:一闪一闪亮晶晶
····
html>
<head>
<style>
#container{
width: 400px
height: 400px
border: 1px solid yellowgreen
background-color: black
position: relative
}
</html>
····
3:定时跳转网页
····
<html>
<head>
<style>
#box{
width: 1300px
height: 100px
line-height: 100px
border: 1px solid black
color: yellowgreen
font: 29/30px "simsun"
text-align: center
}
</style>
</html>
····
4:d窗
····
<html>
<head>
<script>
alert("我是d窗")
window.alert("全写的窗口d窗")
</html>
····
1、首先,我们新建一个带有button按钮的页面,在Dreamweaver中打开这个页面。
2、button按钮不能直接添加herf属性,我们可以通过button的onClick事件来实现页面的跳转。
3、可以直接在onclick事件上添加动作实现页面跳转,也可以让onClick触发函数实现页面跳转,如下图所示。
4、还可以写一个click函数,来触发页面跳转。这就需要我们获取到这个button,可以给button一个Id了,如下图所示。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)