How to launch PHP file from Javascript without window.open - Stack Overflow

I'm using Javascript and I need to call a PHP file to execute some stuff, but I'd like not to

I'm using Javascript and I need to call a PHP file to execute some stuff, but I'd like not to use window.open("filename.php"); because it usually opens a new tab or new window.

Sometime a PHP file need a few seconds to finish its job and I don't like to see an open tab or open window while it's working.

Thanks

I'm using Javascript and I need to call a PHP file to execute some stuff, but I'd like not to use window.open("filename.php"); because it usually opens a new tab or new window.

Sometime a PHP file need a few seconds to finish its job and I don't like to see an open tab or open window while it's working.

Thanks

Share Improve this question edited May 24, 2012 at 9:19 dda 6,2132 gold badges27 silver badges35 bronze badges asked May 24, 2012 at 9:09 HataruHataru 941 gold badge1 silver badge13 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 6

AJAX is the solution, and with jQuery it's so simple.

Just add this line on your head section (to include jquery):

<script src="https://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $.ajax({
      type: "GET",
      url: "yourPage.php"
    }).done(function( data) {
      alert( "Request is done" );
    });
</script>

You can use ajax or dynamically create iframe.

If you use extjs library - here is example ajax request

Use Ajax! Here's a solution using JavaScript's jQuery library:

$.post('your_file.php', {parameter : some_value}, function(response){
  // now you can use `response` came from your_file.php after execution
});

$.post(), $.get() are shorthand methods for $.ajax() of jQuery.

or simply use .load(),

('#test_div').load('your_file.php'); //load data from server into `#test_div`

will do job, if you want to just execute something on server-side.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743648432a4484149.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信