Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM touchcancel Event

Sự kiện hủy chạm HTML DOM được kích hoạt khi một hoặc nhiều sự kiện chạm bị gián đoạn.

LƯU Ý:Sự kiện này chỉ dành cho các thiết bị cảm ứng.

Sau đây là cú pháp -

Kích hoạt sự kiện touchcancel trong HTML -

ontouchcancel = "eventFunction()"

Kích hoạt sự kiện touchcancel trong JavaScript -

eventObject.ontouchcancel = eventFunction

Hãy để chúng tôi xem ví dụ về sự kiện hủy chạm tài sản -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM touchcancel event</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-touchcancel-event</legend>
         <label for="textSelect">Proverb --></label>
         <input type="text" ontouchcancel="eventAction()" id="textSelect" size="30" value="Too many    cooks spoil the broth" disabled>
         <div id="divDisplay"></div>
      </fieldset>
   </form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var textSelect = document.getElementById("textSelect");
   function eventAction() {
      divDisplay.textContent = 'Too many touch events triggered and disrupted';
   }
</script>
</body>
</html>

Đầu ra

Trước khi chạm vào màn hình -

HTML DOM touchcancel Event

Sau khi kích hoạt nhiều sự kiện chạm trên màn hình -

HTML DOM touchcancel Event