رویداد کیبورد metaKey
مثال (رویداد کیبورد metaKey)
Find out whether or not the "META" key was pressed when a keyboard key is pressed:
var x = document.getElementById("demo");
if (event.metaKey) {
x.innerHTML = "The META key was pressed!";
} else {
x.innerHTML = "The META key was NOT pressed!";
}
if (event.metaKey) {
x.innerHTML = "The META key was pressed!";
} else {
x.innerHTML = "The META key was NOT pressed!";
}
خودتان امتحان کنید »
تعریف و کاربرد
The metaKey property returns a Boolean value that indicates whether or not the "META" key was pressed when a key event was triggered.
Not all keyboards have the meta key. It is common for Sun microsystem keyboards, and MIT and LISP machine keyboards. The meta key is either labeled "META" or marked with a solid diamond "◆" symbol.
On Mac keyboards, the META key is represented by the the "Command/Cmd" ("⌘") key.
Note: This property is read-only.
پشتیبانی مرورگرها
متد | |||||
---|---|---|---|---|---|
metaKey | بله | بله | بله | بله | بله |
نحوه استفاده
event.metaKey
جزئیات تکنیکی
مقدار برگشتی | A Boolean, indicating whether the "META" key was pressed when the key event occured.
Possible values:
|
---|---|
DOM Version: | DOM Level 2 Events |
آموزش های مرتبط
مرجع مدل DOM در اچ تی ام ال KeyboardEvent altKey Property
مرجع مدل DOM در اچ تی ام ال KeyboardEvent ctrlKey Property
مرجع مدل DOM در اچ تی ام ال KeyboardEvent shiftKey Property
مرجع کلیه رویدادهای JavaScript
- نوشته شده توسط امیر پهلوان صادق
- بازدید: 4020