开发者

jQuery $.GET parameters passing in the URL

开发者 https://www.devze.com 2023-02-19 06:23 出处:网络
this is a general-purpose way to make GET requests with jQuery: var loadUrl="mypage.php"; $("#get").click(function(){

this is a general-purpose way to make GET requests with jQuery:

var loadUrl="mypage.php";
$("#get").click(function(){   
    $("#result").html(ajax_load);   
    $.get(   
        loadUrl,   
        {language: "php", version: 5},   
        function(responseText){   
            $("#result").html(responseText);   
        },   
        "html"  
    开发者_C百科);   
});  

I was wondering if I could pass parameters (Ex.language and version) directly in the URL(after urlencoding them):

var loadUrl="mypage.php?language=php&version=5";
$("#get").click(function(){   
    $("#result").html(ajax_load);   
    $.get(   
        loadUrl,      
        function(responseText){   
            $("#result").html(responseText);   
        },   
        "html"  
    );   
});  

Is that possible? And anyhow which is the cleanest solution to make an ajax call if I have all of the parameters I need urlencoded (Ex.<a href="mypage.php?language=php&version=5">rate me</a>)


Yes that is possible but you can also do it this way.

$.get(
   "mypage.php", 
   { version: "5", language: "php" }, // put your parameters here
   function(responseText){
      console.log(responseText);
   },
   'html'
);


$.get(

  url: url,    //your url eg. mypage.php

  data: data,   // Parameter you want to pass eg. {version:"5" , language : "php"}

  success: callback // function after success

);

follow the below link

http://api.jquery.com/jQuery.getJSON/

0

精彩评论

暂无评论...
验证码 换一张
取 消