HTML5中实用快捷键有哪些?

html-css06

HTML5中实用快捷键有哪些?,第1张

html5是门语言,应该是没什么快捷键的吧,你说的快捷键应该对标的是某个编辑html代码的IDE,常用的有vscode(完全免费),webstorm(非免费,需要购买或pojie)...

//原生

var elem = document.querySelector('#myInput')

elem.addEventListener('keydown', function(e) {

    if( e.keyCode == 13 ){

        console.log('Enter is pressed.')

        //add your code

    }

}) //使用jQuery

$('#myInput').keydown(function(e){

    if( $(e).which == 13 ){

        console.log('Enter is pressed.')

        //add your code

    }

})

监听是js来实现的,对于html是否是html5无关。