Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道任何用于逗号分隔的电话号码掩码输入的好插件(可能是 jQuery)吗?
有很多掩码输入插件,但我找不到多值字段的插件。
meioMask 非常棒。开源。非常清晰的文档。
http://www.meiocodigo.com/projects/meiomask/
也许你可以自己做。
您只需要使用 .change() jQuery 事件。
$( ".target" ).change(function() { $text = $(this).text(); /*DO SOME STUFF*/ $(this).text($text); });
有关 .change() 事件的更多信息,请点击此处。
有关 .text() 函数的更多信息,请点击此处。