internet-explorer-9

If IE comments showing up in IE9

天大地大妈咪最大 提交于 2019-12-25 12:42:51
问题 This is what is happening when you visit my site in IE9 - This is the code that is causing this: <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <link rel="stylesheet" href="stylesheets/ie.css" media="screen" /> <![endif]--> <!--[if !IE]--> <link rel="stylesheet" href="stylesheets/sizeable.css" media="screen" /> <!--[endif]--> <!--[if !IE]--> <link rel="stylesheet" href="stylesheets/sizeable.css" media="screen" /> <!--[endif]--> Thoughts? 回答1: EDIT

If IE comments showing up in IE9

≡放荡痞女 提交于 2019-12-25 12:42:35
问题 This is what is happening when you visit my site in IE9 - This is the code that is causing this: <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <link rel="stylesheet" href="stylesheets/ie.css" media="screen" /> <![endif]--> <!--[if !IE]--> <link rel="stylesheet" href="stylesheets/sizeable.css" media="screen" /> <!--[endif]--> <!--[if !IE]--> <link rel="stylesheet" href="stylesheets/sizeable.css" media="screen" /> <!--[endif]--> Thoughts? 回答1: EDIT

I get the error SCRIPT1003: Expected ':' in IE 11; (Java Script Code error)

℡╲_俬逩灬. 提交于 2019-12-25 11:51:30
问题 This particular snippet of JS code does not work on IE 11. I get the error SCRIPT1003: Expected ':' and it says it is missing on line that it's in bold. var $actions = application.service('$actions', [ function() { let _logout = function() { $('#logoutForm').submit(); } return { **Logout() {** _logout(); }, }; }]); Any ideas? Thank you 回答1: IE11 does not support shorthand method names. See the compatability part of the MDN. Use return { Logout: function() { _logout(); } }; (or stop supporting

I get the error SCRIPT1003: Expected ':' in IE 11; (Java Script Code error)

﹥>﹥吖頭↗ 提交于 2019-12-25 11:50:12
问题 This particular snippet of JS code does not work on IE 11. I get the error SCRIPT1003: Expected ':' and it says it is missing on line that it's in bold. var $actions = application.service('$actions', [ function() { let _logout = function() { $('#logoutForm').submit(); } return { **Logout() {** _logout(); }, }; }]); Any ideas? Thank you 回答1: IE11 does not support shorthand method names. See the compatability part of the MDN. Use return { Logout: function() { _logout(); } }; (or stop supporting

Dynamically generated svg that works with IE9

元气小坏坏 提交于 2019-12-25 08:28:18
问题 Our web page uses dynamically generated svg from an ashx page. This works in IE8 and earlier using the Adobe SVG plugin. It does not work in IE9 (including compatibility mode). We are using the <object> tag. I am trying to modify the page to work with IE9. I was able to get SVG to render with a simple test svg I found on the web using: <embed src="http://oursite.com/circle1.svg" type="image/svg+xml" height="200" width="550"/> However if I change this to: <embed src="http://oursite.com

HTML5 code not working in IE9

我只是一个虾纸丫 提交于 2019-12-25 08:13:40
问题 The following simple code works in Firefox (12.0) but does not seem to work in IE 9 even though local storage is supported in IE9. Notice how alert(localStorage.lastname); does not show up any results. Was wondering if there is a known issue in using localStorage in IE9 as the documentation does say it is supported. <!DOCTYPE html> <html> <body> <script> if(typeof(Storage)!=="undefined") { alert('local storage') localStorage.lastname="Smith"; alert(localStorage.lastname); } else { alert(

HTML5 code not working in IE9

元气小坏坏 提交于 2019-12-25 08:10:03
问题 The following simple code works in Firefox (12.0) but does not seem to work in IE 9 even though local storage is supported in IE9. Notice how alert(localStorage.lastname); does not show up any results. Was wondering if there is a known issue in using localStorage in IE9 as the documentation does say it is supported. <!DOCTYPE html> <html> <body> <script> if(typeof(Storage)!=="undefined") { alert('local storage') localStorage.lastname="Smith"; alert(localStorage.lastname); } else { alert(

Gallery images not displaying in Internet Explorer 9

情到浓时终转凉″ 提交于 2019-12-25 05:27:24
问题 I have a problem which I do not know how to solve. I have a gallery using slimbox on my website. It works great in Firefox and other browsers (on both Windows and Mac), but the images are not visible, and are no longer links, when viewed in Internet Explorer 9. 回答1: You have a display:none; in your .mosaic-backdrop class. It get's overidden in Chrome/FF but not in IE. Remove it. 来源: https://stackoverflow.com/questions/10554596/gallery-images-not-displaying-in-internet-explorer-9

Jquery UI Drag and Drop not working in IE9

陌路散爱 提交于 2019-12-25 05:25:25
问题 I have Jquery drag and drop working in firefox, but it does not work in IE9. I turned on display script errors on IE9 but its not displaying any errors.. The demo site is http://www.aussiehaulage.com.au/default.aspx I have the latest versions of Jquery and UI 回答1: This issue will get fixed with this fix. Use this fix in your code and enjoy. http://forum.jquery.com/topic/jquery-ui-sortable-and-draggable-do-not-work-in-ie9 This will be in jQuery UI 1.8.6. If you can't upgrade to 1.8.6 (yet),

Base href ignored in IE9

不羁岁月 提交于 2019-12-25 05:01:38
问题 I use a rewrite methode: RewriteEngine on RewriteRule ^page/([^/\.]+)$ search.php?q=$1 for prevent affecting on url of css and images , i used <base href="http://localhost/project/" /> at the page header. in FF and Chrome everything works fine, but in IE9 it still adds "page" (rewrited url) to all page urls and makes: http://localhost/project/page what is problem? 来源: https://stackoverflow.com/questions/10758366/base-href-ignored-in-ie9