2015-03-20 28 views
8

Sayfamdaki ajax'ın başarı fonksiyonunda bir bootstrap modunu açmam gerekiyor. Form sunulduğunda başarı fonksiyonu çağrılır .., böylece bir düğme tıklaması olmadan bootstrap modunu açmak için herhangi bir yöntem var. bir çaylak .., .. Bu benim ajax çağrıdır .. buradaDüğme tıklatmadan bootstrap modunu nasıl açılır?

 $("#form").submit(function(e) 
    { 
     $.ajaxSetup({ 
      headers:{'X-CSRF-Token' : $('meta[name=_token]').attr('content')} 
     }); 
    e.preventDefault(); //STOP default action 
    var postData = $(this).serializeArray(); 
    console.log(postData); 


    var formURL = "http://localhost:8000/v1/people_roles"; 

    $.ajax(
    { 


     url :formURL , 
     type: "POST", 
     data : postData, 
     success:function(response, textStatus, jqXHR) 
    { 

     if(response.parent==1) 
     { 
      $("#getCode").html(response); 
      $("#getCodeModal").modal('show'); 
      window.location.href="/web/staff/detail.php?id="+response.people_id; 
     } 
     else 
     { 
      //console.log(response); 
      window.location.href="/web/staff/detail.php?id="+response.people_id; 
     } 
    } 



    }); 
    }); 

bana yardım ve bu benim html modal kodudur lütfen ..

<div class="modal fade" id="getCodeModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> 
    <div class="modal-dialog modal-lg"> 
    <div class="modal-content"> 
    <div class="modal-header"> 
     <h4 class="modal-title">Modal title</h4> 
    </div> 
    <div class="modal-body"> 
     <p><strong>Lorem Ipsum is simply dummy</strong> text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown 
      printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, 
      remaining essentially unchanged.</p> 
    </div> 
    <div class="modal-footer"> 
     <button type="button" class="btn btn-white" ng-click="cancel()">Close</button> 
     <button type="button" class="btn btn-primary" ng-click="ok()">Save changes</button> 
    </div> 
    </div> 
    </div> 
</div>  
+1

Kodunuzu kesiyor musunuz lütfen? –

+1

'$ (" # getCodeModal "). Modal (" show ");' – Sadikhasan

cevap

İlgili konular