Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML onpaste แอตทริบิวต์เหตุการณ์


แอตทริบิวต์ HTML onpaste จะทำงานเมื่อผู้ใช้วางเนื้อหาบางส่วนในองค์ประกอบ HTML ในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

<tagname onpast=”script”></tagname>

ให้เราดูตัวอย่างของแอตทริบิวต์ HTML onpaste เหตุการณ์ -

ตัวอย่าง

<!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>

ผลลัพธ์

HTML onpaste แอตทริบิวต์เหตุการณ์

ตอนนี้พยายามคัดลอกและวางข้อความย่อหน้าในพื้นที่ข้อความและสังเกตว่าแอตทริบิวต์เหตุการณ์ onpaste ทำงานอย่างไร -

HTML onpaste แอตทริบิวต์เหตุการณ์