<!DOCTYPE html>
<html>
<head>
<title>js12.html</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">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<!-- 函数的使用 -->
<script type="text/javascript">
function mOver(object){
object.color = "red";
}
function mOut(object){
object.color = "blue";
}
</script>
</head>
<body>
<font style = "cursor:hand" onclick = "window.location.href = 'http://www.baidu.com'"
onmouseover = "mOver(this);" onmouseout = "mOut(this);">欢迎访问百度</font>
</body>
</html>
javascript window.location.href
最新推荐文章于 2021-10-27 17:44:03 发布