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 插件:
$(document).(function($){ $('input[id^="field-phone-"]').mask("0 (99) 999 9999"); });
它工作正常。然而,如果我创建另一个字段运行时,选择器不会选择它。我怎样才能让 jQuery 意识到这一点?我见过活的东西,但不知道如何实现它。
使用标准 jQuery,简单的答案是你不能。您需要mask()在创建新元素的同时再次调用该函数。
mask()