我想将数据发送到其他php文件
我可以将带有此网址代码的数据发送到我的第二个php文件。
www.test.com/second.php?task=demo&id=55
我有一个像这样的href代码
<a href="first.php?task=first&name=Jack">send</a>
如何使用second.php?task=demo&id=55
发送此代码a href href="first.php?task=first&name=Jack"
?
我想做这样的事情
<a href="first.php?task=first&name=Jack and second.php?task=demo&id=55">send</a>
答案 0 :(得分:-2)
你想做这样的事情。
像这样构建你的锚
<a class="sender" href="#" data-task="first" data-name="Jack"
data-task2="demo" id="55">send</a>
然后让jquery像这样运行
jQuery(document).ready( function() {
$(document.body).on('click',".sender", function(e){
var id = $(this).attr("id");
var task = $(this).attr("data-task");
var name = $(this).attr("data-name");
var task2 = $(this).attr("data-task2");
jQuery.ajax({
url: ajax_url + '[INCLUDE PATH HERE]first.php',
type: 'POST',
async: false,
cache: false,
data: {"task":task, "name": name },
success: function (response) {
[output data if necessary]
}
});
jQuery.ajax({
url: ajax_url + '[INCLUDE PATH HERE]second.php',
type: 'POST',
async: false,
cache: false,
data: {"task":task2, "id": id },
success: function (response) {
[output data if necessary]
}
});
});
});