Implementing a hyperlink-like effect, this represents the elements of this page
The code copy is as follows:
<html>
<head>
<script type="text/javascript">
function mOver(obj){
obj.color="red";
}
function mOut(obj){
obj.color="blue";
}
</script>
</head>
<body>
<font style="cursor:hand"
onclick="window.location.href='http://www.baidu.com/'"
onmouseover="mOver(this)"
onmouseout="mOut(this)" >Welcome</font>
</body>
</html>
Do you guys know anything about the javascript incident? Leave me a message if you have any questions