jQuery的同時使用此代碼和funtion GET不工作:
window.onload = function(){
$.get("http://mixsoft.cf/s/status.php?ip=190.60.215.195&port=8080", function(data){
alert(data);
});
};
jQuery的同時使用此代碼和funtion GET不工作:
window.onload = function(){
$.get("http://mixsoft.cf/s/status.php?ip=190.60.215.195&port=8080", function(data){
alert(data);
});
};
移動你的回調函數.complete
使用&的data.responseText
代替data
。
$.get('http://mixsoft.cf/s/status.php?ip=190.60.215.195&port=8080').complete(function(data){
console.log(data.responseText)
alert(data.responseText);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
不要忘了導入下面的標記在HTML頁面中。
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
這個答案爲時尚早:) –
它實際上不起作用,因爲該頁面是HTTPS。 –
但答案很公平。 –
你運行到CORS?如果我不擁有域,我會查找控制檯,並且返回的數據假定爲'application/json',而'JSON.parse'不是有效的json。 –
'不工作'不是一個問題。你應該問問題。 –