onclick 删除,html
我正在与 webapp-net 合作构建 iOS/android 的应用程序。在我的应用程序中,我有一个带有一些文本字段的表单。我想要一个“X”图标,通常在输入输入时出现在文本字段上。通过单击该图标,您只需单击一下即可删除整个输入。仅当输入输入时才会出现图标“X”,当文本字段为空时,图标不可见。如果您能给我一个如何做的例子,我将非常感激。
I am working with webapp-net to build an application for iOS/android. in my app I have a form with some text fields. I want to have a "X" icon that usually appear on text fields when an input is entered. by clicking on that icon you can remove the whole input in just one click. The icon "X" appears only when an input is entered, when the textfield is empty the icon is not visible. If you could just give me an example of how to do it, I would really appreciate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个简单的 html 展示了如何拥有一个输入字段和一个 X 按钮,按下时调用一个干净的函数
现在是 javascript
当然,这缺乏验证,例如按下什么类型的键以避免在按下 SHIFT 或 CTRL 时显示 X 按钮
this simple html shows how to have an input field and a X button that calls a clean function when pressed
Now the javascript
Of course this lacks validations like what type of key is pressed to avoid showing the X button when you press SHIFT or CTRL