如何使用 jquery 对 php 文件进行 onclick ajax 调用?

How to do an onclick ajax call to a php file, with jquery?(如何使用 jquery 对 php 文件进行 onclick ajax 调用?)
本文介绍了如何使用 jquery 对 php 文件进行 onclick ajax 调用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个链接,它链接到 domain.com ,当有人点击时,我希望它对 counter.php 进行 ajax 调用并向其发布 2 个变量,因此它可以在该链接的视图中添加 1.

I have a link, which links to domain.com , when a person clicks, I want it to do an ajax call to counter.php and post 2 variables to it, so it can add 1 to the views for that link.

我有一个链接:

<a href="http://www.domain.com" onClick="addHit('12345', '1')" rel="nofollow" target="_blank">Link Title</a>

我将如何使用 jquery 做到这一点?

How would I do this with jquery?

我试过这样的

function addHit(str, partNumber){
$.get("counter.php", { version: str, part: partNumber })                
}

它似乎工作,但在萤火虫中,请求永远不会完成......它只是做那个工作......"动画.counter.php 完成后会回显一些文本(不需要出现在任何地方).

It seems to work, but in firebug, the request never completes... it just does that "working..." animation. counter.php echos out some text when its done (doesnt need to show up anywhere).

推荐答案

来自 jQuery 文档:http://api.jquery.com/jQuery.ajax/

From the jQuery documentation: http://api.jquery.com/jQuery.ajax/

function addHit(data1, data2)
{
    $.ajax({
       type: "POST",
       url: "http://domain.com/counter.php",
       data: "var1=data1&var2=data2",
       success: function(msg){
         alert( "Data Saved: " + msg ); //Anything you want
       }
     });
}

这篇关于如何使用 jquery 对 php 文件进行 onclick ajax 调用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)