up
down
Close
線上訪客: 7 本日人次: 948 昨日人次: 1858 累積人次: 866378
 

jQuery 即時監聽 input 文字內容

│ 3432 Views │ jQuery
jQuery 即時監聽 input 文字內容
jQuery 即時監聽 input 文字內容

如果需要即時監聽使用者輸入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.

本文是否對您有幫助?

延伸閱讀