Click on
to focus <input>

前端 未结 6 1322
时光说笑
时光说笑 2020-12-30 22:54

I have a series of input elements each with a few

tags separate.
I like to have if where I can click on any of the
6条回答
  •  渐次进展
    2020-12-30 23:43

    Try this with jquery:

    $('#yourdiv').click(function() {
         $('#yourfield').focus();
    });
    

提交回复
热议问题