简体   繁体   中英

How to select value of input onClick?

I have a <input type="text"> and if user clicks inside it I want to make the content (value) of that box selected. How would I do that?

<input type="text" onclick="select()"/>

Try select method:

document.getElementById("myinput").onclick = function() {
    this.select();
};

You can try following code inside a javaScript method, and call the method onClick event of the textbox...

function calledOnClick(){

    document.getElementById('test').select();
}

You can try following jQuery code which automatically call on page load

<script>
$(document).ready(function(){
    $('input').each(function(){
        $(this).click(function() {
            this.select();
        });
    });
    $("#return_date").focus();
});
</script>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM