美文网首页
JS补充28

JS补充28

作者: 常婧帅 | 来源:发表于2018-08-25 09:23 被阅读0次

    键盘事件

    keydown,keyup,keypress

    keydown>keypress>keyup

    keydown和keypress的区别

    keydown可以响应任意键盘按键,keypress可以响应字符类键盘按键。

    keypress返回ASCII码,可以转换成相应字符。

    document.onkeypress=function(e){

          console.log(String.fromCharCode(e.charCode));

    }

    文本操作事件

    input,focus,blur,change

    <input  type='text' value="请输入用户名"style="color=#999" onfocuse="if(this.value=='请输入用户名' ){

            this.value=' ';this.style.color="#242424"}" onblur="if(this.value==' '){this.value="请输入用户名";this.style.color='#999'}">

    window上的事件

    scroll:滚动条一滚动事件触发

    load。

    相关文章

      网友评论

          本文标题:JS补充28

          本文链接:https://www.haomeiwen.com/subject/lemwiftx.html