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.
我想在文本输入中限制我的用户,以便他们最后可以编辑带有百分比符号的数字。现在他们只能输入小数。我如何让他们限制有百分比符号?我正在做这个限制='0-9\.\-'。我感谢您的帮助。谢谢。
您可以将 % 符号添加到限制值。
restrict='0-9\.\-\%'
不知道你是否需要用斜杠转义它。如果您想将百分比限制在文本中的最后一个位置,您将需要监听 change 或 valueCommit 事件,以按照您需要的方式验证和格式化数据。