مثال (رویداد کیبورد shiftKey)

Find out whether or not the "SHIFT" key was pressed when a keyboard key is pressed:

var x = document.getElementById("demo");
if (event.shiftKey) {
    x.innerHTML = "The SHIFT key was pressed!";
} else {
    x.innerHTML = "The SHIFT key was NOT pressed!";
}

خودتان امتحان کنید »

تعریف و کاربرد

The shiftKey property returns a Boolean value that indicates whether or not the "SHIFT" key was pressed when a key event was triggered.

Note: This property is read-only.


پشتیبانی مرورگرها

متد     
shiftKey بله بله بله بله بله

نحوه استفاده

event.shiftKey

جزئیات تکنیکی

مقدار برگشتی A Boolean, indicating whether the "SHIFT" key was pressed when the key event occured.

Possible values:

  • true - The shift key was pressed
  • false - The shift key was not pressed
DOM Version: DOM Level 2 Events

آموزش های مرتبط

مرجع مدل DOM در اچ تی ام ال KeyboardEvent altKey Property

مرجع مدل DOM در اچ تی ام ال KeyboardEvent ctrlKey Property

مرجع مدل DOM در اچ تی ام ال KeyboardEvent metaKey Property


مرجع کلیه رویدادهای JavaScript Reference مرجع کلیه رویدادهای JavaScript