时间:2021-05-28
1.在列属性中加入事件
{ title:'数据量序号', field:'sjid' // hidden:true },{ field: 'operate', title: '操作', width: '80px', events: operateEvents, formatter: operateFormatter }2.写一个函数
function operateFormatter(value, row, index) { return [ '<input type="submit" value="上传" class="RoleOfedit btn btn-primary btn-sm" data-toggle="modal" style="display:inline">', ].join(''); }3.记得这个写在表格的前面
window.operateEvents = { 'click .RoleOfedit': function (e, value, row, index) { alert(row.qxxh); $("#upload").modal('show'); } };4.点击“弹出模态框”
<div class="modal fade" id="upload" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <form action="http://localhost:8080/GD/UploadAction_execute.action" method="post" enctype="multipart/form-data" name="uploadfile"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabelfile">上传文件</h4> </div> <div class="modal-body"> <input type="file" name="my" id="file" value="浏览" style="display: none;" onchange="document.uploadfile.filePath.value=this.value"/> <input type="text" name="filePath" id="filePath"/> <input type="button" value="浏览..." onclick="document.uploadfile.my.click()"/><br> <input type="submit" value="上传" id="shangchuan"> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </form></div>总结
以上所述是小编给大家介绍的BootStrap给table表格的每一行添加一个按钮事件,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1)将每一行的索引插入操作行中,即为每一行数据添加一个属性index使用el-table已经给处的方法:tableRowClassNamehtml中:js中:只
目标:layui实现点击按钮添加一行解决方案:方案1、table是用转换静态表格的方式创建的,写一个button,每次点击按钮,就添加一个标签;方案2、tabl
1.我做的是一个动态表格,就是在输入框里每输入一次数据并点击“添加”按钮,表格中就会新增一行记录。获奖记录表编号奖项名称获奖年份操作//添加//1.获取按钮va
本文实例讲述了超级简单的jquery操作表格方法。分享给大家供大家参考。具体实现方法如下:利用jquery给指定的table添加一行、删除一行复制代码代码如下:
在使用JqGrid时,Table中最后一列是操作列,在操作列中每一行都一个操作按钮,该操作按钮类似下拉菜单,如下图:在点击Table中【操作】一列时需要弹出一个