我做了一個簡單的腳本顯示來自路由器的數據,但有一個錯誤:登錄到路由器
無法加載資源
但位置是可用的。那麼,這可能是問題的真正原因。
var xmlhttp = null;
if (window.ActiveXObject)
{
xmlhttp = new ActiveXObject ("Microsoft.XMLHTTP");
}
else
{
xmlhttp = new XMLHttpRequest();
}
xmlhttp.open ("POST", "http://" + routerIP + port + link, true);
xmlhttp.setRequestHeader ("Content-type", "application/x-www-form-urlencoded");
//base64UserPass in format user:pass
xmlhttp.setRequestHeader ("Authorization", "Basic " + base64UserPass);
xmlhttp.setRequestHeader ("Connection", "close");
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState == 4)
{
document.write (xmlhttp.responseText);
}
else
{
alert ("Error ocurred: server not responding!\n" + xmlhttp.responseText);
}
};
xmlhttp.send ("");
請直接在這裏發佈代碼與使用鏈接到第三方網站。 – Joe