博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[bootstrap]模态框总结
阅读量:4956 次
发布时间:2019-06-12

本文共 1032 字,大约阅读时间需要 3 分钟。

/*绑定触发模态框show函数立即执行的回调事件*/        $('#modal').on('show.bs.modal', function (event) {          console.log('run..');          //触发模态框的按钮          var button = $(event.relatedTarget) // Button that triggered the modal          console.log(button);          var recipient = button.data('mydata') // Extract info from data-* attributes          var modal = $(this)          // modal.find('.modal-title').text('New message to ' + recipient)          // modal.find('.modal-body input').val(recipient)          console.log(recipient);        })

虽然js也可以操纵bootstrap模态框,但看过官网文档后明显提供的方法不足,例如向模态框内传递数据。建议还是使用html来操纵模态框。

转载于:https://www.cnblogs.com/hihtml5/p/6283528.html

你可能感兴趣的文章
ELK部署
查看>>
通过storyboard设置cell
查看>>
mongodb write 【摘自网上,只为记录,学习】
查看>>
Configuration Extensions - 简化配置,让你配置支持变量
查看>>
Java安全 – JCE Blowfish算法报错
查看>>
Navicat 12 破解方法
查看>>
中国大学MOOC-数据结构基础习题集、05-2、Saving James Bond - Easy Version
查看>>
LeetCode:36. 有效的数独
查看>>
DEV:GridControl 筛选复选框 Checked Dropdown更改数据源
查看>>
第九节 字符串指针(十)
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
SQL语句case when外用sum与count的区别
查看>>
lua 迭代器 iterator
查看>>
Oracle_merge into 中 using 后的查询表如果有参数的情况
查看>>
3Sum Closest
查看>>
Java 两次MD5
查看>>
南大2019研究生复试练习题(1)
查看>>
使用ADO访问ACCESS
查看>>
保存图片到相册
查看>>
df命令
查看>>