HTML onpaste 속성은 사용자가 HTML 문서의 HTML 요소에 일부 콘텐츠를 붙여넣을 때 트리거됩니다.
구문
다음은 구문입니다 -
<tagname onpast=”script”></tagname>
HTML onpaste 이벤트 Attribute의 예를 살펴보겠습니다. −
예시
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
height: 100vh;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
text-align: center;
padding: 20px;
}
p {
border: 2px solid #fff;
padding: 8px;
text-align: justify;
}
textarea {
border: 2px solid #fff;
background: transparent;
font-size: 1rem;
}
::placeholder {
color: #000;
font-size: 1rem;
}
</style>
</head>
<body>
<h1>HTML onpaste Event Attribute Demo</h1>
<p>
I'm a paragraph element with some dummy text.
I'm a paragraph element with some dummy text.
I'm a paragraph element with some dummy text.
I'm a paragraph element with some dummy text.
I'm a paragraph element with some dummy text.
</p>
<textarea placeholder="Paste above text here" onpaste="pasteFn()" rows='8' cols="50" required></textarea>
<script>
function pasteFn() {
document.querySelector('textarea').style.background = '#fff';
}
</script>
</body>
</html> 출력

이제 텍스트 영역에서 단락 텍스트를 복사하여 붙여넣고 onpaste 이벤트 속성이 어떻게 작동하는지 관찰하십시오 -
