jQuery keyup function doesnt work?

后端 未结 4 1007
陌清茗
陌清茗 2021-01-12 13:51

My HTML file:



  
  

        
4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-12 14:31

    Syntax is wrong see here

    $( document ).ready(function() {
       $( "#workerID" ).keyup(function() {
        .....................
       });
    });
    

    change ); to });

提交回复
热议问题