我使用以下代码通过php代码导航到特定网站。
header('Location:www.google.com');
我需要执行一个脚本,但不应该导航页面。我的要求是 - 我希望使用链接向一个人发送消息,但是没有页面可以通过点击按钮导航 - 在服务器端执行链接。
你可以告诉我怎么做。感谢, 萨姆
答案 0 :(得分:1)
在按钮点击或标记点击事件上执行此代码。
$.ajax({
type: "POST",
url: "sever url",
data: { message: "hello" }
})
.done(function( msg ) {
alert( "script executed successfully ");
this.preventDefault(); // stops navigating from the page while <a> click or on submit click.
});