JavaScript警报消息

HAS*_*NAT -8 javascript alert

我不确定,当有人尝试使用JavaScript从网页复制文本时,是否可以显示警告消息?如果有可能那么我该怎么做?

如果您有任何想法,请提出建议.

nin*_*alt 5

这样的事可能吗?

<html>
<body>

<input type="text" oncopy="myFunction()" value="Try to copy this text">

<script>
function myFunction() {
    alert('you tried to copy')
}
</script>

</body>
</html>
Run Code Online (Sandbox Code Playgroud)