move cursor to the beginning of the input field?

前端 未结 4 931
面向向阳花
面向向阳花 2020-12-01 11:39

when you click on \'Ask question\' here in Stackoverflow you see a text \"What\'s your programming question? Be descriptive.\"

i want the same thing and all i need f

4条回答
  •  死守一世寂寞
    2020-12-01 12:25

     $('#txtYourTextBox').blur(function () { 
        var val = $("#txtYourTextBox").val();
        $("#txtYourTextBox").val('');
        setTimeout(function () { $("#txtYourTextBox").val(val); }, 20);
    });
    

提交回复
热议问题