admin管理员组文章数量:1346324
Here is what needs to be done.
I have an html code and when use clicks into input field the javascript function is called.
The javascript function should call php file track.php which then counts the clicks.
Is it possible to run a php script from javascript?
Here is what needs to be done.
I have an html code and when use clicks into input field the javascript function is called.
The javascript function should call php file track.php which then counts the clicks.
Is it possible to run a php script from javascript?
Share Improve this question asked Apr 6, 2011 at 17:33 user444434user444434 511 silver badge6 bronze badges 1- What you seek my friend, ajax is: en.wikipedia/wiki/Ajax_(programming) – Kevin Commented Apr 6, 2011 at 17:36
3 Answers
Reset to default 7Try using the jQuery framework for your javascript code. And have a look at the ajax function.
$.ajax({
type: "POST",
url: "track.php",
data: form_data,
success: function(){
// code
},
error: function(){
// code
}
});
Yes, it is possible : you'll want to search for the "Ajax" keyword.
Ajax will allow you to send requests, from Javascript to your server, in the background -- without reloading the page.
If you just want to send a simple request, working with the XmlHttpRequest
object that's provided by the browser is quite easy.
Else, if you want more advanced stuff, you'll probably want to take a look at Javascript libraries, such as jQuery.
Now would be as good a time as any to learn jQuery
本文标签: Sending A POST or GET request to php script using javascriptStack Overflow
版权声明:本文标题:Sending A POST or GET request to php script using javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830034a2546350.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论