|
发表于 2023-6-26 10:52:15
|
显示全部楼层
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<style>
* {
margin: 0;
}
.div1 {
border: 1px solid;
background: #ff0;
width: 100px;
height: 100px;
font-family: 'simsun';
display: inline-block;
}
</style>
</head>
<body>
<div class="div1">
<img src="http://via.placeholder.com/100.png" alt="">
</div>
<script>
let div1 = document.querySelector('.div1');
div1.onmousedown = function (e) {
if (e.which == 3) {// 鼠标右键
console.log('right')
this.oncontextmenu = function () { return false; }
}
}
</script>
</body>
</html>
这些整体复制进load里吗?哪些需要改动? |
|