如果需要即時監聽使用者輸入input的內容,只需要使用on(input)即可。
HTML
<input type="text" id="text">
jQuery
$("#text").on("input", function() {
var text=$(this).val().trim();
console.log(val);
});
trim()代表去除前後空白。
實際操作
See the Pen Untitled by kumo (@kumo-tw) on CodePen.
本文是否對您有幫助?