如何为jsonp添加特定值类型?

时间:2015-11-06 00:05:10

标签: javascript json ajax jsonp

所以我现在的脚本是:



$(document).ready(function() {
  $("#submit").bind('click', function() {
    var username = $("#username").val();
    $.ajax({
      type: "GET",
      url: 'http://www.roblox.com/UserCheck/DoesUsernameExist?username=' + username,
      data: {
        q: username
      },
      async: true,
      dataType: 'jsonp', //you may use jsonp for cross origin request
      crossDomain: true,
      success: function(data, status, xhr) {
        alert(xhr.getResponseHeader('Location'));
      }
    });

  });
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="username" type="text" name="" value="" placeholder="Enter your idiom here">
<br>
<button id="submit" type="">Submit</button>
&#13;
&#13;
&#13;

如何制作,以便我可以使用+用户名使用此脚本? 我需要帮助解决这个问题,这不是我的原始代码,但我只是在修补它。我是JS,JSON等人的新手。

0 个答案:

没有答案