2016-08-02 88 views
-2

jQuery的同時使用此代碼和funtion GET不工作:

window.onload = function(){ 
$.get("http://mixsoft.cf/s/status.php?ip=190.60.215.195&port=8080", function(data){ 
    alert(data); 
}); 
}; 
+0

你運行到CORS?如果我不擁有域,我會查找控制檯,並且返回的數據假定爲'application/json',而'JSON.parse'不是有效的json。 –

+1

'不工作'不是一個問題。你應該問問題。 –

回答

2

移動你的回調函數.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> 
    

無論如何,你不必CORS的問題,因爲響應刮: enter image description here

+0

這個答案爲時尚早:) –

+0

它實際上不起作用,因爲該頁面是HTTPS。 –

+0

但答案很公平。 –