js中定义了一个move(first,modify)方法,需要传入first,modify。因为我想重复使用move函数可是有的地方不需要modify,有的地方需要,传空值的话也不行,无法运行。
有什么方法能不需要传入固定个数的参数运行嘛。
调用
function moveTest() {
var first = document.getElementById(id);
var modify = {
y: function () {
statements
}
};
move(first, modify); //这里一定要两个参数不然运行不了。
}
方法
function move(first, modify) {
first.onmousedown = function (e) { //把onclick改成onmouseover就是一获得焦点图片就跟随鼠标移动,onmousedown鼠标拖动效果
modify.y(); //方法
var x = e.clientX - first.offsetLeft;
var y = e.clientY - first.offsetTop;
document.onmousemove = function (e) {
var left = e.clientX - x;
var top = e.clientY - y;
first.style.left = left + 'px';
first.style.top = top + 'px';
document.onmouseup = function () { //鼠标松开时释放函数,如果需要拖至指定位置可在此添加运算逻辑;
document.onmousemove = null;
document.onmouseup = null;
}
}
},
慕沐林林
MMTTMM
相关分类