用onmousedown和onmouseup同时绑定统一目标元素,但是只有第一个函数起作用
尝试用其他函数绑定,依旧只有第一个函数起作用
js代码如下:
//点击中间确定按钮
function confirmBtn(){
var aCenter = document.getElementById("confirmBtn");
aCenter.onmousedown = function () {
aCenter.style.boxShadow = "inset 0 0 50px #333";
console.log( aCenter );
}
aCenter.onmouseup = function(){
// aCenter.style.boxShadow = "0 0 0 transparent";
console.log( aCenter );
}
}
confirmBtn();
HUX布斯
相关分类