私はeModalを介して負荷のコンテンツを持って、私はid`s例でURLを得た:?#index.phpのID = 1つの& IDTを= 2 どのようにこのパラメータモーダル使用のAJAXの負荷量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>
のh1.phpは、このパラメータを使用していくつかのグラフを表示する必要がある機能です。 – CommanderSpock