متد رویدادی preventDefault
مثال (متد رویدادی preventDefault)
Prevent a link from opening the URL:
document.getElementById("myAnchor").addEventListener("click", function(event){
event.preventDefault()
});
event.preventDefault()
});
خودتان امتحان کنید »
در انتهای این صفحه، مثال های بیشتری آورده شده است.
تعریف و کاربرد
The preventDefault() method cancels the event if it is cancelable, meaning that the default action that belongs to the event will not occur.
For example, this can be useful when:
- Clicking on a "Submit" button, prevent it from submitting a form
- Clicking on a link, prevent the link from following the URL
Note: All events are not cancelable. Use the cancelable property to find out if an event is cancelable.
Note: The preventDefault() method does not prevent further propagation of an event through the DOM. Use the stopPropagation() method to handle this.
پشتیبانی مرورگرها
The numbers in the table specify the first browser version that fully supports the method.
متد | |||||
---|---|---|---|---|---|
preventDefault() | بله | 9.0 | بله | بله | بله |
نحوه استفاده
event.preventDefault()
پارامترها
None |
جزئیات تکنیکی
مقدار برگشتی | No return value |
---|---|
DOM Version: | DOM Level 2 Events |
مثال - خودتان امتحان کنید
مثال (متد رویدادی preventDefault)
Prevent the default action of a checkbox:
document.getElementById("myCheckbox").addEventListener("click", function(event){
event.preventDefault()
});
event.preventDefault()
});
خودتان امتحان کنید »
مرجع کلیه رویدادهای JavaScript
- نوشته شده توسط امیر پهلوان صادق
- بازدید: 8730