رویداد کیبورد ctrlKey
مثال (رویداد کیبورد ctrlKey)
Find out whether or not the "CTRL" key was pressed when a keyboard key is pressed:
var x = document.getElementById("demo");
if (event.ctrlKey) {
x.innerHTML = "The CTRL key was pressed!";
} else {
x.innerHTML = "The CTRL key was NOT pressed!";
}
if (event.ctrlKey) {
x.innerHTML = "The CTRL key was pressed!";
} else {
x.innerHTML = "The CTRL key was NOT pressed!";
}
خودتان امتحان کنید »
تعریف و کاربرد
The ctrlKey property returns a Boolean value that indicates whether or not the "CTRL" key was pressed when a key event was triggered.
Note: This property is read-only.
پشتیبانی مرورگرها
متد | |||||
---|---|---|---|---|---|
ctrlKey | بله | بله | بله | بله | بله |
نحوه استفاده
event.ctrlKey
جزئیات تکنیکی
مقدار برگشتی | A Boolean, indicating whether the "CTRL" key was pressed when the key event occured.
Possible values:
|
---|---|
DOM Version: | DOM Level 2 Events |
آموزش های مرتبط
مرجع مدل DOM در اچ تی ام ال KeyboardEvent altKey Property
مرجع مدل DOM در اچ تی ام ال KeyboardEvent metaKey Property
مرجع مدل DOM در اچ تی ام ال KeyboardEvent shiftKey Property
مرجع کلیه رویدادهای JavaScript
- نوشته شده توسط امیر پهلوان صادق
- بازدید: 3871