色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

HTML事件屬性oncut


HTML事件屬性oncut


觸發(fā)oncut屬性事件當切割元素的含量時。

HTML5中的新功能

沒有。

句法

<element oncut="script or Javascript function name">

支持的標簽

所有HTML元素

瀏覽器兼容性

HTML事件屬性oncutHTML事件屬性oncutHTML事件屬性oncutHTML事件屬性oncutHTML事件屬性oncut
oncutYesYesYesYesYes


例子

<!DOCTYPE html>
<html>
<body>

<p oncut="myFunction()">Cut me by pressing ctrl-x</p>

<script>
function myFunction() {
    console.log("cut!");
}
</script>

</body>
</html>

Click to view the demo