站内搜索:
首页 >> 前端 >> 内容
mousedown

时间:2016/12/10 13:41:00

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>菜鸟教程(runoob.com)</title>
<script src="file:///D|/zhandian/jquery-2.1.4/jquery.js">
</script>
<script>
$(document).ready(function(){
$("#p1").mousedown(function(){
alert("鼠标在该段落上按下!");
});
});

</script>
</head>
<body>
<p id="p1">这是一个段落</p>
</body>
</html>

 

  • 上一篇:关于form表单
  • 下一篇:css3中transition属性
  • 返回顶部