<!DOCTYPE html>
<html>
<body>
<p contenteditable="true" onpaste="myFunction()">请尝试在此段落中粘贴一些内容。</p>
<script>
function myFunction() {
alert("You pasted text!");
}
</script>
</body>
</html>