html 设置onmousedown事件
我用newImage()事件创建的img标签怎么设置它的onmousedown事件急高手帮忙...
我用 new Image()事件创建的img标签
怎么设置它的onmousedown事件
急 高手帮忙 展开
怎么设置它的onmousedown事件
急 高手帮忙 展开
展开全部
一个简单的实例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript">
function crp(){
var img=new Image();
img.src="06.gif";
document.getElementById("im").src=img.src;
document.getElementById("im").onmousedown=function(){
alert('onmousedown');
}
}
</script>
</head>
<body onload="javascript:crp()">
<img src="1.jpg" name="im" id="im"/>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript">
function crp(){
var img=new Image();
img.src="06.gif";
document.getElementById("im").src=img.src;
document.getElementById("im").onmousedown=function(){
alert('onmousedown');
}
}
</script>
</head>
<body onload="javascript:crp()">
<img src="1.jpg" name="im" id="im"/>
</body>
</html>
2015-11-24 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
方法如下:
当在段落上按下鼠标按钮时执行一段 JavaScript:
<p onmousedown="mouseDown()">请点击此文本!</p>
定义和用法
onmousedown 属性在鼠标按钮在元素上按下时触发。
提示:相对于 onmousedown 事件的事件次序(限于鼠标左/中键):
onmousedown onmouseup onclick
相对于 onmousedown 事件的事件次序(限于鼠标右键):
onmousedown onmouseup oncontextmenu
注释:onmousedown 属性不适用以下元素:<base>、<bdo>、<br>、<head>、<html>、<iframe>、<meta>、<param>、<script>、<style> 或 <title>。
当在段落上按下鼠标按钮时执行一段 JavaScript:
<p onmousedown="mouseDown()">请点击此文本!</p>
定义和用法
onmousedown 属性在鼠标按钮在元素上按下时触发。
提示:相对于 onmousedown 事件的事件次序(限于鼠标左/中键):
onmousedown onmouseup onclick
相对于 onmousedown 事件的事件次序(限于鼠标右键):
onmousedown onmouseup oncontextmenu
注释:onmousedown 属性不适用以下元素:<base>、<bdo>、<br>、<head>、<html>、<iframe>、<meta>、<param>、<script>、<style> 或 <title>。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript">
function crp(){
var img=new Image();
img.src="06.gif";
document.getElementById("im").src=img.src;
document.getElementById("im").onmousedown=function(){
alert('onmousedown');
}
}
</script>
</head>
<body onload="javascript:crp()">
<img src="1.jpg" name="im" id="im"/>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript">
function crp(){
var img=new Image();
img.src="06.gif";
document.getElementById("im").src=img.src;
document.getElementById("im").onmousedown=function(){
alert('onmousedown');
}
}
</script>
</head>
<body onload="javascript:crp()">
<img src="1.jpg" name="im" id="im"/>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询