在網頁上顯示 iTunes Library 的 Cover Flow.
透過 iTunes Library 的 Cover Flow 你們可以知道我都聽哪些音樂 😀 雖然你們不見得有興趣知道. 終於找到這隻程式. 但是, 還不能正常顯示中文. 看誰有 flash 的編輯器幫忙一下. 如果有那位善心人士. 能提供中文顯示的 .swf 感激不盡! 謝謝! 按這裡全螢幕顯示. 我在玩這個flash. …
透過 iTunes Library 的 Cover Flow 你們可以知道我都聽哪些音樂 😀 雖然你們不見得有興趣知道. 終於找到這隻程式. 但是, 還不能正常顯示中文. 看誰有 flash 的編輯器幫忙一下. 如果有那位善心人士. 能提供中文顯示的 .swf 感激不盡! 謝謝! 按這裡全螢幕顯示. 我在玩這個flash. …
1 2 <input type="text" name="hostname" onblur="this.value = this.value.toLowerCase();"> <input type="text" name="macaddress" onblur="this.value = this.value.toUpperCase();"><input type="text" name="hostname" onblur="this.value = this.value.toLowerCase();"> <input type="text" name="macaddress" …
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 …
相信大家都有在網路上填寫地址的經驗. 是不是覺得很麻煩? 選縣市, 選鄉鎮市, 然後再打個路, 鄰, 鄉, 鎮…等. 甚至有些格式還沒辦法正確的輸入. 就像我前陣子在用 pchome 的skype認證. 居然我家沒辦法透過他們設計的輸入模式輸入. 真是很氣人!! 於是我應用了別人的 autocomplete 程式. (忘了來源在哪裡???) 寫出下列程式. 只要輸入路名. 就可以幫助你完成前面部份. 這一切看起來非常方便也很直覺.又可以幫助完成一些瑣碎的輸入. …
前陣子接收到許多廣告信.心裡真的很不爽. 明明就不想要那些垃圾信卻一直騷擾. 林北只好來個絕地大反攻. 那個廣告信不是賣 CD 就是賣書賣音樂. 在廣告網頁下方有要填寫訂購資訊. 好吧! 你那麼喜歡訂單. 林北給你多點訂單. 我寫了一隻 javascript 用 ajax 方式自動填寫訂單. 就一直放網頁讓他 reload. 程式碼如下 : 1 2 3 …
Demo 裡面的程式碼是我改寫別人的. 至於誰是那個程式擁有者我不太清楚. 如果有侵權請告知. i modified someone’s source codes. but, i don’t know who own that codes. if you are the author …
取得瀏覽器種類 1 2 3 4 5 6 7 8 9 10 function getbrowser() { var agt = navigator.userAgent.toLowerCase(); if (agt.indexOf(’msie’) != -1) …
用正規表示式檢查整數. 1 2 3 4 5 function checkint(str) { var regex = /^[1-9]+\d*$|^-[1-9]+\d*$/; re = new RegExp(regex); return (str.match(regex)) != null ? …
################################# # data string as following : ################################# TITLE=title name CLICK=click Login button to continue. TYPE=type your login password and. RETYPE=retype your …
When you invoke any of the following methods, and a match is found, the global RegExp object is updated: exec() match() test() …