Click on
to focus <input>

前端 未结 6 1340
时光说笑
时光说笑 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:32

    $('div').click(function() {
        $(this).find('input[type="text"]').focus();
    });​
    

    LIVE DEMO

提交回复
热议问题