2017-08-06 54 views
0

我通過eModal了負載的內容和我得到的網址與id`s例如:?#的index.php ID = 1個& IDT = 2 如何能在阿賈克斯這個參數的模式使用加載內容id和idt? 。

<script> 
$(document).ready(function() {/* activate scroll spy menu */ 

    var iconPrefix = '.fa-'; 


    $(iconPrefix + 'mixcloud').click(ajaxDemo); 
    ///////////////////* Implementation */////////////////// 

    // Demos 
    function ajaxDemo() { 
     var title = 'Znaczniki H1'; 
     var params = { 
      buttons: [ 
       { text: 'Close', close: true, style: 'danger' }, 
       { text: 'New content', close: false, style: 'success', click: ajaxDemo } 
      ], 
      size: eModal.size.lg, 
      title: title, 
      url: 'views/h1.php' 
     }; 

     return eModal 
      .ajax(params) 
      .then(function() { alert('Ajax Request complete!!!!', title) }); 
    } 
    }); 
    </script> 
+0

裏面h1.php是需要使用這個參數來顯示一些圖表的函數。 – CommanderSpock

回答

1

好吧,如果你想獲得你所在的實際網頁的GET帕拉姆id

var url_string = "http://www.example.com/index.html?id=joe"; 
var url = new URL(url_string); 
var id = url.searchParams.get("id"); 


我從這篇文章這一功能:How to get the value from the GET parameters?

+0

我想加載內容從h1.php但在這個h1.php是功能,這需要url的url – CommanderSpock

+0

例如:我在webside#index.php?id = 1&idt = 2,並有模態其中ajax加載h1.php並有功能需要編號從url – CommanderSpock

+0

好吧,我編輯我的答案,以更好地適合你的問題,我希望。 – amenzou