触发 oncut
属性事件当切割元素的含量时。
没有。
<element oncut="script or Javascript function name">
所有HTML元素
oncut |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<p oncut="myFunction()">Cut me by pressing ctrl-x</p>
<script>
function myFunction() {
console.log("cut!");
}
</script>
</body>
</html>