怎么做!? :点击添加打开弹出式窗口并使用 1.php 内容时,点击发送生成变量并发送此变量并将内容 1.php 替换为 2.php
答案 0 :(得分:0)
两个单独的单击函数,两个单独的ajax调用。在你了解如何创建弹出窗口的基础上,以下将是潮起潮落。
$('#add').click(function(e){
e.preventDefault();
$.ajax({
url: '1.php',
type: 'get',
data: {q : 6} //or $('#someEle').text() for dynamic values of course.
}).done(function(data){
$('#txtHint').html(data);
$('#popup').show();
});
});
//since 'send' seems to be dynamically injected, we need an event handler.
$('#txtHint').on('click', '#send', function(e){
e.preventDefault();
$.ajax({
url: '2.php',
type: 'get',
data: {q : 6}
}).done(function(data){
$('#txtHint').html(data);
//popup is already open, no reason to fire .show() again.
});
});