跳到主要內容

發表文章

目前顯示的是有「IE」標籤的文章

Win10電腦 強制開啟IE瀏覽器 by VB script

 用Notapad寫下以下的內容 With CreateObject("InternetExplorer.Application") .visible = True .Navigate [Url]           .Left = 0           .Top = 0           .Height = 1024           .Width = 1280 End With 然後存檔成 .vbs 檔案 之後點選檔案就會自動啟動IE 目前測試過在WIN10 版本能正常執行

[Bootstrap] Bootstrap suppor IE8

使用 html5shiv.js 可以讓 IE6 IE7 IE8 支援 HTML5 標籤的 JavaScript,下載網址: https://github.com/aFarkas/html5shiv 使用 css3-mediaqueries.js 可以讓不支援 Media Queries 的瀏覽器透過 Javascript 的方式也能支援。 https://code.google.com/p/css3-mediaqueries-js/ Bootstrap的官網提到,IE8 和 IE9 是有支援的,但是,很多CSS3属性和HTML5元素 -- 例如,圓角矩形和投影 -- 卻是沒有支援的。因此,IE8 需要Respond.js的配合才能實現對媒體查詢(media query)的支持。 http://getbootstrap.com/getting-started/#support-ie8-ie9 https://github.com/scottjehl/Respond

[CSS3] let IE8 Support more CSS3 : CSS3 selectors for IE "selectivizr"

IE8 對於CSS3的支援沒有很好, 有些時候寫的CSS是無法在IE8上執行 這時候可以安裝 selectivizr.js 就可以改善這個問題 這是selectivizr.js專頁上的說明 selectivizr is a JavaScript utility that emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8. Simply include the script in your pages and selectivizr will do the rest 詳細說明請見 http://selectivizr.com/

[FaceBook] FB Share Dialog Error On IE 8

FB Share Dialog Error On IE 8 在使用FB Share Dialog 的元件時 用FB官方的source Code https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href) , 'facebook-share-dialog', 'width=626,height=436'); return false;"> Share on Facebook 在IE8的瀏覽時候會出現錯誤 SCRIPT87: 不正確的引數。 m_index.html, 行 127 字元 1 這個原因是在IE中 window.opne的參數 不得有 "-" 所以原本的source Code要把name的參數 [facebook-share-dialog]改掉就可以了 https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href) , ' NewWindowsName ', 'width=626,height=436'); return false;"> Share on Facebook

[Web] Flash Z-index on IE / 解決在IE上 Flash會蓋住圖層的問題

用IE瀏覽有設定z-index layer跟Flash的 頁面 會有原本設定在Flash上的layer圖層 反而被Flash的蓋掉的問題 這個狀況可以在Flash的參數中加上以下的內容 在para中 <param name="wmode" value="opaque" /> 在<embed 內加入wmode="opaque" 如果有flash的js記得要多這個參數 'wmode', 'opaque',