所以我现在的脚本是:
$(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;
如何制作,以便我可以使用+用户名使用此脚本? 我需要帮助解决这个问题,这不是我的原始代码,但我只是在修补它。我是JS,JSON等人的新手。