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.
如何通过 JS 在文本字段中动态添加 InputMask 插件和掩码?
我已经尝试过:
field.addPlugins(new InputMask( { Mask: result }));
但没有用。
这个问题是否定的,但我找到了答案。
一天可能有用!
使用前需要注册插件!为此,只需输入:
ResourceManager.RegisterControlResources<InputMask>();
在 PageLoad 事件中。