我想在我的json輸出中放置一個js window.location,以使用該javascript代碼更新DIV以重定向用戶。這裏唯一的問題是,我的腳本在嘗試將json輸出中的javascript之後再也不做任何事了。JavaScript中的window.location由json返回的php
$result = array("error" => false, "html" => null);
$result["error"] = false;
$result["html"] = "<h3>Deel 1 is afgerond, <a href='/shop/?,69'>KLIK HIER</a> om door te gaan naar de begin pagina.</h3>";
$result["html"] .= "<script type="text/javascript"><!-- function Redirect() { window.location="http://www.newlocation.com"; } setTimeout('Redirect()', 10000); //--></script>";
} else {
$result["error"] = true;
$result["html"] = "<h3>Error; Neem contact op met de webmaster</h3>";
}
現在腳本因爲這個JS而沒有做任何事情而死亡。
我只是不知道如何格式化它。我試圖改變「到」並把\放在\「之前」,但它們都不起作用。有人嗎?
謝謝。
謝謝!也會使用這個js的改變! – Justin 2014-12-04 11:33:20