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.
如何制作输入字段,如用于输入电话号码的波纹管链接。
http://phoenix-tape.com/?p=7
输入数字时,此下划线需要消失。
任何人都可以帮助我吗?
您可以使用当用户单击输入框以清除字段时调用的函数。例子:
<script> clear(){ document.querySelector('input#tel').value=""; } </script> <input id="tel" on click="clear();"/>
享受!
这个 jquery 插件将是你的解决方案
http://digitalbush.com/projects/masked-input-plugin/