- 鼠标点击时间
<a href="<%=basePath %>userConfirmShouhuo?orderCode=${order.orderCode}" onclick="aa()">确认收货</a>
<script type="text/javascript">
function aa(){
alert("确定收货吗!");
}
</script>
2、鼠标移进移除时间
<style>
*{
margin:0 ;
padding:0;
}
#shiyan{
width: 300px;
height: 300px;
background-color: #e69;
margin: auto; /*左右居中*/
text-align: center;
line-height: 300px;
}
</style>
</head>
<body>
<div id="shiyan" onmouseover="onOver()" onmouseout="onOut()">
</div>
<script>
function onOver() {
var x = document.getElementById("shiyan");
x.innerHTML="你的鼠标移动进来了";
}
function onOut() {
var x = document.getElementById("shiyan");
x.innerHTML="你的鼠标移动出去了";
}
</script>
</body>