Currently browsing tag

html

html5 video tag 簡單示範

再說明 html5 video tag 之前要先了解一下哪些瀏覽器有支援html5 tag及播放格式. 紅色代表不支援. 綠色代表支援. 圖表來源 : “When can I use…” 目前而言 safari 5 和 ie 不支援 Ogg/Theora/Vorbis 格式. …

少用到的 html 標記.你也許需要知道!

Codes : <label for=”breakfast”>早餐</label> <select id=”breakfast” name=”breakfast”> <optgroup label=”中式”></optgroup> <option value=”c1″>饅頭</option> <option value=”c2″>燒餅</option> <option value=”c3″>油條</option>       <optgroup label=”西式”></optgroup> <option value=”w1″>鬆餅</option> <option value=”w2″>漢堡</option> <option value=”w3″>薯條</option> …

input text 強制轉大寫 or 小寫

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" …