如何从Ajax中的URL获取id或idt。例如我在网站index.php?id = 1 在这个文件中有一个加载例如h1.php的按钮是一个需要这个id参数的函数。我无法在Ajax中使这个脚本工作,因为无法使用正确的id创建URL,无法从当前URL获取此id。我试过这样的事情
<script>
$(document).ready(function () {/* activate scroll spy menu */
var iconPrefix = '.fa-';
var id = $(window.location.href).attr('id');
var idt = $(window.location.href).attr('idt');
$(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?id='+id+'&idt='+idt,
};
return eModal
.ajax(params)
.then(function () { alert('Ajax Request complete!!!!', title) });
}
});
</script>