破解鉅亨網美股,不用加入會員,也可以自訂選股清單,達到即時觀察
破解鉅亨網美股,不用加入會員,也可以自訂選股清單,達到即時觀察
昨天做出PHP的台股分析程式,並整到原本的[存股]文章,今天早上有前同事看到,問說美股有沒有方法也可以,翻了一下資料,利用JS做了一個可定時更新純粹超連結的網頁。
<html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=utf8″> <title>破解鉅亨網美股(Crack cnyes.com for US)</title> <script language=Javascript> function RunTimer() { setTimeout(“Timer01();”, 60000); } function Timer01() { window.location.reload(); } </script> </head> <body onload=”RunTimer();”> <div id=”container”> <script language=”javascript”> <!– var displaymode=0 var iframecode0='<iframe id=”external_0″ style=”width:100%;height:25%” src=”http://www.cnyes.com/usastock/ustopQM.aspx?code=AMZN”></iframe>’ var iframecode1='<iframe id=”external_1″ style=”width:100%;height:25%” src=”http://www.cnyes.com/usastock/ustopQM.aspx?code=IBM”></iframe>’ var iframecode2='<iframe id=”external_2″ style=”width:100%;height:25%” src=”http://www.cnyes.com/usastock/ustopQM.aspx?code=AMZN”></iframe>’ var iframecode3='<iframe id=”external_3″ style=”width:100%;height:25%” src=”http://www.cnyes.com/usastock/ustopQM.aspx?code=IBM”></iframe>’ if (displaymode==0) { document.write(iframecode0) document.write(iframecode1) document.write(iframecode2) document.write(iframecode3) } //–> </script> </div> </body> </html> |