grid里用右键来实现功能菜单
2009-09-16 00:00:00 来源:WEB开发网Js代码
function Geometry(){}
Geometry.prototype = {
getHorizontalScroll:function(){
var result = 0;
// All browsers but IE
if (window.innerWidth) {
result = window.pageXOffset;
}
// for IE 6 when there is a DOCTYPE
if (document.documentElement && document.documentElement.clientWidth) {
result = document.documentElement.scrollLeft;
}
// for IE4, IE5, and IE6 without a DOCTYPE
if (document.body.clientWidth) {
result = document.body.scrollLeft;
}
return result;
},
getVerticalScroll:function(){
var result = 0;
// All browsers but IE
if (window.innerWidth) {
result = window.pageYOffset;
}
// for IE 6 when there is a DOCTYPE
if (document.documentElement && document.documentElement.clientWidth) {
result = document.documentElement.scrollTop;
}
// for IE4, IE5, and IE6 without a DOCTYPE
if (document.body.clientWidth) {
result = document.body.scrollTop;
}
return result;
}
}
var geometry = new Geometry();
7、display_right_div()方法是当右键点击body时把右键隐藏掉。
以上大致介绍了自定义grid里用右键来实现功能菜单的操作过程,总体的过程就是那样了,希望对大家会有帮助。
最终的效果如下:
图片看不清楚?请点击这里查看原图(大图)。
更多精彩
赞助商链接