从输入文本HTML获取值并立即使用它

时间:2016-12-08 03:15:08

标签: javascript php html

我在HTML中输入了文本和一些文字:

<input type="text" name="user_id" id="user_id" maxlength='13' size='13'  onChange="no_user_id_change();">

<p> Your ID is: {{id from input type goes here when I type Enter in input type...}} </p>

我的JavaScript:

<script>
    function no_user_id_change() {
        var userId = $("#user_id").val();      
    }
</script>

我的问题:

当用户输入时,如何从user id文本中获取input

0 个答案:

没有答案