js 琐碎的小东西

1. jquery input文本框内容改变时自动触发事件

  

$(function () {
$("#SeparateCount").bind("input", function () {
alert($(this).attr("value"))
});

});

原文地址:https://www.cnblogs.com/spectre/p/2961044.html