JavaScript实现输入框与清空按钮联动效果
2019/6/27 22:09:20
本文主要是介绍JavaScript实现输入框与清空按钮联动效果,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
废话不多说了,直接给大家贴关键代码了,具体代码如下所示:
<!DOCTYPE html><html><head><metacharset="UTF-8"><title>输入框清空按钮</title><scriptsrc="js/jquery1.8.3.min.js"></script><script>/** * 校验当前输入框的值,如果不为空显示清空按钮 * @param element */functioncheckInput(element){var value = $(element).val(); if(value!=null&&''!=value) $(element).parent().parent().children().children('.button').removeClass('none'); else $(element).parent().parent().children().children('.button').addClass('none'); } /** * 清空输入框内容 * @param element */functionclearInput(element){ $(element).parent().parent().children().children('input').val(''); $(element).addClass('none'); } </script><style>.none{ display: none; }.height-20{ height:20px;;}.button{ color: red; font-size:18px; width:100px; height:18px;;border:1px solid red; border-radius:5px; }</style></head><body><div><div><inputtype="text"placeholder="输入试试看"onkeyup="checkInput(this);" > </div><divclass="height-20" ></div><div> <aclass="none button"onclick="clearInput(this);" >clear input</a></div></div></body> </html> ').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(' ').text(i)); }; $numbering.fadeIn(1700); }); });
以上所述是小编给大家介绍的JavaScript实现输入框与清空按钮联动效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对找一找教程网网站的支持!
这篇关于JavaScript实现输入框与清空按钮联动效果的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Vue新手入门教程:从零开始学习Vue框架
- 2024-11-23如何集成Ant Design Vue的图标
- 2024-11-23如何集成Ant Design Vue图标
- 2024-11-23使用vue CLI快速搭建Vue项目教程
- 2024-11-23Vue CLI多环境配置简单教程
- 2024-11-23Vue3入门教程:轻松搭建你的第一个Vue3应用
- 2024-11-23Vue3+Vite快速上手指南
- 2024-11-23Vue3阿里系UI组件入门指南
- 2024-11-23Vue3的阿里系UI组件入门指南
- 2024-11-23Vue3公共组件入门教程