JS Reference

JS by Category JS by Alphabet

JavaScript

JS Array JS Boolean JS Classes JS Date JS Error JS Global JS JSON JS Math JS Number JS Operators JS RegExp JS Statements JS String

Window

Window Object Window Console Window History Window Location Window Navigator Window Screen

HTML DOM

DOM Document DOM Element DOM Attributes DOM Events DOM Event Objects DOM HTMLCollection DOM Style
alignContent alignItems alignSelf animation animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationTimingFunction animationPlayState background backgroundAttachment backgroundColor backgroundImage backgroundPosition backgroundRepeat backgroundClip backgroundOrigin backgroundSize backfaceVisibility border borderBottom borderBottomColor borderBottomLeftRadius borderBottomRightRadius borderBottomStyle borderBottomWidth borderCollapse borderColor borderImage borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeft borderLeftColor borderLeftStyle borderLeftWidth borderRadius borderRight borderRightColor borderRightStyle borderRightWidth borderSpacing borderStyle borderTop borderTopColor borderTopLeftRadius borderTopRightRadius borderTopStyle borderTopWidth borderWidth bottom boxShadow boxSizing captionSide caretColor clear clip color columnCount columnFill columnGap columnRule columnRuleColor columnRuleStyle columnRuleWidth columns columnSpan columnWidth counterIncrement counterReset cursor direction display emptyCells filter flex flexBasis flexDirection flexFlow flexGrow flexShrink flexWrap cssFloat font fontFamily fontSize fontStyle fontVariant fontWeight fontSizeAdjust height isolation justifyContent left letterSpacing lineHeight listStyle listStyleImage listStylePosition listStyleType margin marginBottom marginLeft marginRight marginTop maxHeight maxWidth minHeight minWidth objectFit objectPosition opacity order orphans outline outlineColor outlineOffset outlineStyle outlineWidth overflow overflowX overflowY padding paddingBottom paddingLeft paddingRight paddingTop pageBreakAfter pageBreakBefore pageBreakInside perspective perspectiveOrigin position quotes resize right scrollBehavior tableLayout tabSize textAlign textAlignLast textDecoration textDecorationColor textDecorationLine textDecorationStyle textIndent textOverflow textShadow textTransform top transform transformOrigin transformStyle transition transitionProperty transitionDuration transitionTimingFunction transitionDelay unicodeBidi userSelect verticalAlign visibility width wordBreak wordSpacing wordWrap widows zIndex

Web APIs

API Console API Fullscreen API Geolocation API History API MediaQueryList API Storage

HTML Objects

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <tbody> <td> <tfoot> <th> <thead> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>

Other References

CSSStyleDeclaration JS Conversion


KeyboardEvent ซึ่งคุณสมบัติ

ตัวอย่าง

รับค่า Unicode ของแป้นคีย์บอร์ดที่กด:

var x = event.which;

ตัวอย่าง "ลองใช้เอง" เพิ่มเติมด้านล่าง


ความหมายและการใช้งาน

คุณสมบัติใดส่งคืนรหัสอักขระ Unicode ของคีย์ที่ทริกเกอร์ เหตุการณ์ onkeypressหรือรหัสคีย์ Unicode ของคีย์ที่ทริกเกอร์เหตุการณ์onkeydownหรือ onkeyup

ความแตกต่างระหว่างรหัสทั้งสองประเภท:

  • รหัสอักขระ - ตัวเลขที่แสดงถึงอักขระ ASCII
  • รหัสคีย์ - ตัวเลขที่แสดงคีย์จริงบนแป้นพิมพ์

ประเภทเหล่านี้ไม่ได้หมายถึงสิ่งเดียวกันเสมอไป ตัวอย่างเช่น ตัวพิมพ์เล็ก "w" และตัวพิมพ์ใหญ่ "W" มีรหัสแป้นพิมพ์เหมือนกัน เพราะแป้นที่กดบนแป้นพิมพ์เหมือนกัน (แค่ "W" = ตัวเลข "87") แต่ต่างกัน รหัสอักขระเนื่องจากอักขระที่ได้จะแตกต่างกัน (ทั้ง "w" หรือ "W" ซึ่งก็คือ "119" หรือ "87") - ดู "ตัวอย่างเพิ่มเติม" ด้านล่างเพื่อทำความเข้าใจให้ดียิ่งขึ้น

เคล็ดลับ:หากต้องการทราบว่าผู้ใช้กดปุ่มพิมพ์ได้หรือไม่ (เช่น "a" หรือ "5") ขอแนะนำให้ใช้คุณสมบัตินี้ในเหตุการณ์ onkeypress หากต้องการทราบว่าผู้ใช้กดปุ่มฟังก์ชันหรือไม่ (เช่น "F1", "CAPS LOCK" หรือ "Home") ให้ใช้เหตุการณ์ onkeydown หรือ onkeyup

หมายเหตุ:คุณสมบัติใดที่ไม่รองรับใน IE8 และรุ่นก่อนหน้า สำหรับเบราว์เซอร์เวอร์ชันเหล่านี้ คุณสามารถใช้ คุณสมบัติkeyCode อย่างไรก็ตาม คุณสมบัติ keyCode ไม่ทำงานบนเหตุการณ์ onkeypress ใน Firefox สำหรับโซลูชันข้ามเบราว์เซอร์ คุณสามารถใช้รหัสต่อไปนี้:

var x = event.which || event.keyCode;  // Use either which or keyCode, depending on browser support

เคล็ดลับ:สำหรับรายการอักขระ Unicode ทั้งหมด โปรดศึกษา การ อ้างอิง Unicode ฉบับสมบูรณ์ของ เรา

เคล็ดลับ:หากคุณต้องการแปลงค่า Unicode ที่ส่งคืนเป็นอักขระ ให้ใช้เมธอดfromCharCode()

หมายเหตุ:คุณสมบัตินี้เป็นแบบอ่านอย่างเดียว

หมายเหตุ:ทั้งคุณสมบัติ which และ keyCode มีไว้สำหรับความเข้ากันได้เท่านั้น เวอร์ชันล่าสุดของข้อกำหนดเหตุการณ์ DOM แนะนำให้ใช้ คุณสมบัติ คีย์แทน (ถ้ามี)

เคล็ดลับ:หากคุณต้องการทราบว่ามีการกดปุ่ม "ALT", "CTRL", "META" หรือ "SHIFT" หรือไม่เมื่อมีเหตุการณ์สำคัญ ให้ใช้ คุณสมบัติaltKey , ctrlKey , metaKeyหรือ shiftKey


รองรับเบราว์เซอร์

ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่สนับสนุนคุณสมบัติอย่างสมบูรณ์

Property
which Yes 9.0 Yes Yes Yes


ไวยากรณ์

event.which

รายละเอียดทางเทคนิค

คืนมูลค่า: ตัวเลข แทนรหัสอักขระ Unicode หรือรหัสคีย์ Unicode
รุ่น DOM: กิจกรรม DOM ระดับ 2

ตัวอย่างเพิ่มเติม

ตัวอย่าง

การใช้ onkeypress และ onkeydown เพื่อแสดงความแตกต่างระหว่างรหัสอักขระและรหัสแป้นพิมพ์:

<input type="text" onkeypress="uniCharCode(event)" onkeydown="uniKeyCode(event)">

function uniCharCode(event) {
  var char = event.which || event.keyCode; // event.keyCode is used for IE8 and earlier
  document.getElementById("demo").innerHTML = "Unicode CHARACTER code: " + char;
}

function uniKeyCode(event) {
  var key = event.which || event.keyCode; // event.keyCode is used for IE8 and earlier
  document.getElementById("demo2").innerHTML = "Unicode KEY code: " + key;
}

เมื่อกดปุ่ม "a" บนแป้นพิมพ์ (ไม่ใช้ caps lock) ผลลัพธ์ของcharและkeyจะเป็นดังนี้:

Unicode CHARACTER code: 97
Unicode KEY code: 65

ตัวอย่าง

แจ้งเตือนข้อความบางส่วนหากผู้ใช้กดปุ่ม Escape:

<input type="text" onkeydown="myFunction(event)">

function myFunction(event) {
  var x = event.which || event.keyCode; // event.keyCode is used for IE8 and earlier
  if (x == 27) {  // 27 is the ESC key
    alert ("You pressed the Escape key!");
  }
}

ตัวอย่าง

แปลงค่า Unicode เป็นอักขระ (ใช้ไม่ได้กับปุ่มฟังก์ชัน):

var x = event.which || event.keyCode;   // Get the Unicode value
var y = String.fromCharCode(x);         // Convert the value into a character

หน้าที่เกี่ยวข้อง

การอ้างอิง HTML DOM: คุณสมบัติคีย์ KeyboardEvent

การอ้างอิง HTML DOM: คุณสมบัติคีย์โค้ดของ KeyboardEvent

การอ้างอิง HTML DOM: KeyboardEvent charCode Property