我在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
?