bootstrap 模态框动态加载数据

1.页面中添加modal




2.数据格式。页面动态生成a 标签

"+ row.title+"";



3.单击事件

 function targetto(id){

             $("#showModal").modal({
                 remote: "showAction.action?id="+id
             });

             }



4.每次隐藏时,清除数据。确保点击时,重新加载

    $("#showModal").on("hidden.bs.modal", function() {
        $(this).removeData("bs.modal");

    });

5.基于bootstrap3.其他版本,请自己Google,如有雷同,纯属巧合,如有需要,欢迎分享。


你可能感兴趣的:(bootstrap)