onclick 删除,html

发布于 2024-11-30 05:24:06 字数 177 浏览 2 评论 0原文

我正在与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素手挽清风 2024-12-07 05:24:06

这个简单的 html 展示了如何拥有一个输入字段和一个 X 按钮,按下时调用一个干净的函数

<input type="text" onkeypress="show();" id="text" /><div id="close" onclick="clean();" style="display:none">x</div>

现在是 javascript

<script type="text/javascript">
   function show(){
      document.getElementById('close').style.display = ''; //shows the X button when text is entered;
   }

   function clean(){
      document.getElementById('close').style.display = 'none'; //hides the X button
      document.getElementById('text').value = ""; //clears the field
   }
</script>

当然,这缺乏验证,例如按下什么类型的键以避免在按下 SHIFT 或 CTRL 时显示 X 按钮

this simple html shows how to have an input field and a X button that calls a clean function when pressed

<input type="text" onkeypress="show();" id="text" /><div id="close" onclick="clean();" style="display:none">x</div>

Now the javascript

<script type="text/javascript">
   function show(){
      document.getElementById('close').style.display = ''; //shows the X button when text is entered;
   }

   function clean(){
      document.getElementById('close').style.display = 'none'; //hides the X button
      document.getElementById('text').value = ""; //clears the field
   }
</script>

Of course this lacks validations like what type of key is pressed to avoid showing the X button when you press SHIFT or CTRL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文