--- title: KeyboardEvent.metaKey slug: Web/API/KeyboardEvent/metaKey tags: - Evento - Referencia translation_of: Web/API/KeyboardEvent/metaKey ---
{{APIRef("DOM Events")}}
La propiedad KeyboardEvent.metaKey
es de solo lectura y regresa un valor {{jsxref("Boolean")}} que indica si la tecla Meta estaba presionada (true) o no (false) cuando el evento ocurrio.
Nota: En teclados Macintosh es la tecla comando (⌘). En teclados Windows la tecla es lla tecla window (⊞).
var metaKeyPressed = instanceOfKeyboardEvent.metaKey
{{jsxref("Boolean")}}
function goInput(e) { // Revisa si estaba presionada la tecla meta y if (e.metaKey) { // realiza esto en caso de cierto superSizeOutput(e); } else { //Realiz esto en caso de falso doOutput(e); } }
<div id="example" onmousedown="ismetaKey(event);">¡Presiona la tecla meta y dame click!<div>
function ismetaKey(e){ var el=document.getElementById("example");//Toma el control del div example var mK=e.metaKey;//Obtiene el valor de metaKey y lo almacena el.innerHTML="¡Presiona la tecla meta y dame click!</br>metaKey:"+mK;//Muestra el valor de metaKey }
{{ EmbedLiveSample('metaKey') }}
Especificación | Status | Comentario |
---|---|---|
{{SpecName('DOM3 Events','#widl-KeyboardEvent-metaKey','KeyboardEvent.metaKey')}} | {{Spec2('DOM3 Events')}} | Definición inicial |
{{ CompatibilityTable() }}
Característica | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Soporte Básico | {{CompatVersionUnknown()}} | {{CompatVersionUnknown()}} | {{CompatVersionUnknown()}} | {{CompatVersionUnknown()}} | {{CompatVersionUnknown()}} |
Característica | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Soporte Básico | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} |