Js实现自定义右键行为
作者:bea
自定义右键行为(通过事件对象获得鼠标的坐标(x,y)) <!doctype html><html> <head> <meta charset="UTF-8"> <title>demo</title> <style type="text/css"> html{ height:100%; } body{ height
自定义右键行为(通过事件对象获得鼠标的坐标(x,y))
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>demo</title>
<style type="text/css">
html{
height:100%;
}
body{
height:100%;
}
#mydiv{
width:300px;
height:300px;
background-color: #ff7400;
}
#ctxMenu{
background-color: #ff7400;
list-style-type: none;
position: absolute;
padding:0px;
border:1px solid #000;
visibility: hidden;
}
</style>
</head>
<body>
<div id="mydiv"></div>
<h2 id="show"></h2>
<input type="text"id="txt"><span id="help"></span>
<ul id="ctxMenu">
<li>上传</li>
<li>下载</li>
<li>新建</li>
<li>取消</li>
</ul>
<script type="text/javascript">
var $=function(id){
return document.getElementById(id);
};
var h2=$("show");
var ctx=$("ctxMenu");
var txt=$("txt");
var help=$("help");
/*
txt.onfocus=function(){
help.innerHTML="请输入金额";
}
txt.onkeydown=function(event){
help.innerHTML="";
var code=event.keyCode;
if(!(code>=48&&code<=57||code>=96&&code<=105||code==46||code==8||code==13||code==37||code==39||code==110||code==190)){
event.preventDefault();
}
}
*/
document.body.oncontextmenu=function(event){
event.preventDefault();
var x=event.pageX;
var y=event.pageY;
ctx.style.left=x+"px";
ctx.style.top=y+"px";
ctx.style.visibility="visible";
}
document.body.onclick=function(){
ctx.style.visibility="hidden";
}
/*
document.body.onmousemove=function(event){
var x=event.pageX;
var y=event.pageY;
h2.innerHTML=x+":"+y;
}
*/
window.onbeforeunload=function(){
var v=$("txt").value;
if(v){
return "";
}
}
$("mydiv").onclick=function(){
$("show").innerHTML="click";
};
$("mydiv").ondblclick=function(){
$("show").innerHTML="dblclick";
};
$("mydiv").onmouseover=function(){
$("show").innerHTML="mouseover";
this.style.backgroundColor="#2d2d2d";
};
$("mydiv").onmouseout=function(){
$("show").innerHTML="mouseout";
this.style.backgroundColor="pink";
}
</script>
</body>
</html>
以上就是本文给大家分享的全部内容了,希望大家能够喜欢。
请您花一点时间将文章分享给您的朋友或者留下评论。我们将会由衷感谢您的支持!
猜你喜欢
您可能感兴趣的文章:
- JavaScript中的函数声明和函数表达式区别浅析
- jQuery使用fadein方法实现渐出效果实例
- jQuery使用fadeout实现元素渐隐效果的方法
- javascript包装对象实例分析
- javascript操作select元素实例分析
- jquery使用slideDown实现模块缓慢拉出效果的方法
- jQuery使用slideUp方法实现控制元素缓慢收起
- jquery使用animate方法实现控制元素移动
- jQuery获取标签文本内容和html内容的方法
- Node.js 去掉种子(torrent)文件里的邪恶信息
- jQuery使用attr()方法同时设置多个属性值用法实例
- jQuery使用prepend()方法在元素前添加内容用法实例
- jQuery使用append在html元素后同时添加多项内容的方法
- jQuery使用before()和after()在元素前后添加内容的方法
- jQuery使用after()方法在元素后面添加多项内容的方法
- jQuery使用empty()方法删除元素及其所有子元素的方法
- jquery使用remove()方法删除指定class子元素
- jQuery使用removeClass方法删除元素指定Class的方法
- jQuery给多个不同元素添加class样式的方法