php文件我有这样一个链接:
<?php
echo "<a href='example.php add="'.$id.'"'>click</a>"
?>
如果用户点击链接但没有获取数据或移动到另一个页面,我需要使用Ajax在变量中发送数据。
答案 0 :(得分:0)
Heres怎么做(简单发送POST数据):
var link_data = $('.link').data('data');
$.ajax({
url:'http://yourpage.com/page.php', //This is your url to open when he click the link
type: "POST", //Its the method
data: { link_data : link_data }, //Data to send
success:function (data) {
console.log(data); //Logs the response from the URL to you console.
}
});
继承你的HTML部分:
<?php
echo "<a class='link' href='example.php' data-data='{$id}'>click</a>";
?>