bootstrap modal动态加载内容

$("#test .modal-body").load('test_url?id=' + id,function(){
    $("#followStep1").modal("show");
})
$('body').on('hidden.bs.modal', '.modal', function () {
  $(this).removeData('bs.modal');
});

http://algo13.net/bootstrap/modal_remote.html