您现在的位置是: 首页 > 前端开发 layUI点击按钮页面刷新问题解决方案
layUI点击按钮页面刷新问题解决方案
2020-05-20 【前端开发】 2555人已围观 4481次浏览
简介layUI点击按钮页面刷新问题解决方案
在layUI中,默认的button按钮是没有type属性的,也就是在W3C标准浏览器中(比如Google和Firefox)需要特别注意
没有 type="button" 属性的情况下,默认是会提交表单的,也就是出现整个页面刷新的问题根源
在layUI中,按照官方文档来使用,当然是没有问题。但是如果你在表单中自定义了一些事件想通过点击button触发,这时候就一定要加上 type="button" 属性
<button type="button" class="layui-btn">点击</button>
或者是不用button标签,改为input标签
<input class="layui-btn">点击</input>
很赞哦! (0)
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Mac降温软件推荐smcFanControl
- ElasticSearch安装踩坑指南
- CentOS 安装Node.js
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式
- 防止Time Machine备份Parallels Desktop的虚拟硬盘文件
- Python自动生成和安装requirements.txt文件中的依赖
- sentinel directive while not in sentinel mode 问题解决
- Linux no space left on device 出现设备上没有空间问题
- SqlServer 查询包含指定字段的存储过程
- docker mysql 导入 SQL 脚本