iT邦幫忙

鐵人檔案

2013 iT 邦幫忙鐵人賽
回列表

Javascript cookbook 系列

雖然製定了HTML,CSS,DOM,XML等製作網站的規格,但這些規格都很散落,難以跨平台地使用....

鐵人鍊成 | 共 26 篇文章 | 1 人訂閱 訂閱系列文 RSS系列文
DAY 11

Javascript cookbook (11)

開啟全螢幕視窗 screen.availWidth screen.availHeight window.open 可開啟附視窗 程式碼如下: &lt...

2013-09-26 ‧ 由 ted99tw 分享
DAY 12

Javascript cookbook (12)

將視窗移至某位置 程式碼如下: <script> function Event1(){ window.moveTo(100...

2013-09-27 ‧ 由 ted99tw 分享
DAY 17

Javascript cookbook (17)

搜尋視窗內的字串 window.find 可搜尋視窗內的字串 程式碼如下: <script> function Event1(st...

2013-10-02 ‧ 由 ted99tw 分享
DAY 18

Javascript cookbook (18)

撰寫文字 document.write 可撰寫文字 程式碼如下: <script> document.write("Th...

2013-10-03 ‧ 由 ted99tw 分享
DAY 19

Javascript cookbook (19)

以換行方式撰寫文字 document.writeln 可以換行方式撰寫文字(需包在<pre></pre>內) 程式碼如下:...

2013-10-04 ‧ 由 ted99tw 分享
DAY 20

Javascript cookbook (20)

取得文件資訊 document.title : 文件標題 document.URL : 文件URL document.referrer : 文件前一個U...

2013-10-05 ‧ 由 ted99tw 分享
DAY 21

Javascript cookbook (21)

取得檔案的更新時間 document.lastModified 可取得檔案的更新時間 程式碼如下: <title>MYTitle&...

2013-10-06 ‧ 由 ted99tw 分享
DAY 22

Javascript cookbook (22)

開啟視窗並寫入文字 document.write() document.open() document.close() 可開啟視窗並寫入文字 程式碼如下...

2013-10-07 ‧ 由 ted99tw 分享
DAY 23

Javascript cookbook (23)

開啟視窗並寫入影像檔 document.write() document.open() document.close() 可開啟視窗並寫入影像檔 程式碼...

2013-10-08 ‧ 由 ted99tw 分享
DAY 24

Javascript cookbook (24)

指定文字或連結的顏色 document.alinkColor document.bgColor document.fgColor document.li...

2013-10-09 ‧ 由 ted99tw 分享