internet-explorer 相关问题

由Microsoft开发并包含在Windows中的Web浏览器。通常缩写为“IE”。

如何通过 CSS 设置 HTML5 视频中文本轨道的样式?

是否可以在 HTML5 视频播放器中设置文本轨道(如字幕和字幕)的样式? 我已经找到了一种针对 Chrome 的方法: 视频::-webkit-media-text-track-container { // 设置

回答 7 投票 0

所有区域 (SELENIUM) 的保护模式设置都不相同(IE 模式在边缘)

我一直尝试使用 Selenium 在 Internet Explorer 模式下打开 Microsoft Edge,每次都会遇到以下错误: “消息:启动 Internet Explorer 时出现意外错误。Pro...

回答 1 投票 0

文本范围选择MSIE

我可以在 Firefox 中以编程方式轻松设置对 2 个以上元素的选择, 但在 IE 上没有成功,所以我希望这里的任何人都可以帮助我。

回答 1 投票 0

为什么 getElementByID 返回 Nothing 而不是 NULL

在 VBA 中,如果我使用 getElementByID("id_name") 并且 id 不存在,则该函数不会返回任何内容,而不是 null。这让我不知道 DOM 是否尚未渲染该元素,或者 el...

回答 2 投票 0

IE8 中的 CSS 圆角无标题页面...</desc> <question vote="58"> <p>我在 IE8 中遇到圆角问题。我尝试了几种方法都没有成功。</p> <p>这是我的代码:</p> <pre><code><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Page</title> <style> body { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em; padding: 2px; margin: 2px; color: #505050; line-height: normal; } p { margin: 4px; } .categoryheading3 { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; background-color: #297BB6; color: #FFFFFF; font-size: 16px; font-weight: 700; padding: 8px 0; text-align: center; margin: 0px; } .leftcolumn { width: 174px; padding: 8px; float: left; display: inline-block; background-color: transparent; /*--min-height: 500px*/ overflow: hidden; } .lefttop { display: inline-block; width: inherit; margin: 0 5px 2em 0; float: left; width: 160px; background-color: #FFFFFF; border: 2px solid #297BB6; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } </style> </head> <body> <div class="leftcolumn"> <div class="lefttop"> <H4 class="categoryheading3">Heading</H4> <p>sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text </p> </div> </div> </body> </html> </code></pre> <p>这会在 Firefox 中产生:</p> <p><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL1Fyc1BPLmpwZw==" alt="firefox example"/></p> <p>但是在 IE8 中是这样的:</p> <p><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL1h6dUNYLmpwZw==" alt="IE8 makes me sad"/></p> <p>如果有人有任何建议,我将不胜感激! </p> <p>编辑:约瑟夫建议使用pie.htc提供了帮助,但是我仍然在为这个元素不起作用而苦苦挣扎:</p> <pre><code>.categoryheading3 { -moz-border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0; behavior: url(PIE.htc); background-color: #297BB6; color: #FFFFFF; font-size: 16px; font-weight: 700; padding: 8px 0; text-align: center; margin: 0px; } </code></pre> </question> <answer tick="true" vote="69"> <p>Internet Explorer(版本 9 以下)本身不支持圆角。</p> <p>有一个令人惊叹的脚本会神奇地为您添加它:<a href="http://css3pie.com/" rel="noreferrer">CSS3 PIE</a>。</p> <p>我已经使用了很多次,效果惊人。</p> </answer> <answer tick="false" vote="33"> <h1><a href="http://davidwalsh.name/css-rounded-corners" rel="nofollow noreferrer">IE8 中的圆角</a></h1> <p>Internet Explorer 8(及更早版本)<strong>不</strong>支持圆角,<strong>但是</strong>还有<strong>您可以考虑的其他解决方案:</strong></p> <ul> <li><p>使用圆角<pre><code>Images</code></pre>代替(<a href="http://www.generateit.net/rounded-corner/" rel="nofollow noreferrer"><strong>这个</strong></a>生成器是一个很好的资源)</p> </li> <li><p>使用<pre></pre>此处<a href="http://jquery.malsup.com/corner" rel="nofollow noreferrer"><strong></strong>中的</a><code>jQuery Corner plugin</code></p> </li> <li><p>使用一个非常好的脚本,称为<pre><code>CSS3 PIE</code></pre>,来自<strong><a href="http://css3pie.com" rel="nofollow noreferrer">这里</a></strong>(优点和缺点<a href="http://css-plus.com/2011/05/ie-and-rounded-corners/" rel="nofollow noreferrer">这里</a>)</p> </li> <li><p>从<pre></pre>这里<a href="http://www.cssjuice.com/25-rounded-corners-techniques-with-css/" rel="nofollow noreferrer"><strong></strong>结帐</a><code>CSS Juice</code></p> </li> <li><p>另一个好的脚本是<pre><code>IE-CSS3</code></pre>,来自<strong><a href="http://fetchak.com/ie-css3/" rel="nofollow noreferrer">这里</a></strong></p> </li> </ul> <p>尽管 CSS PIE 是最流行的解决方案,我建议您查看所有其他解决方案并选择最适合您需求的解决方案。</p> <p>我希望它有用。祝你好运!</p> </answer> <answer tick="false" vote="4"> <p>看到这篇文章后,我不知道 css3pie.com,一个非常有用的网站:</p> <p>但是经过测试,它对我来说也不起作用。但是我发现将其包装在 .PHP 文件中效果很好。所以代替:</p> <pre><code>behavior: url(PIE.htc); </code></pre> <p>用这个:</p> <pre><code>behavior: url(PIE.php); </code></pre> <p>我把我的放在一个名为 jquery 的文件夹中,所以我的是:</p> <pre><code> behavior: url(jquery/PIE.php); </code></pre> <p>所以去他们的下载或在这里获取:</p> <p><a href="http://css3pie.com/download-latest" rel="nofollow">http://css3pie.com/download-latest</a></p> <p>并使用他们的 PHP 文件。在 PHP 文件中,它解释了某些服务器未配置为正确使用 .HTC。这就是我遇到的问题。</p> <p>尝试一下!我做了,它有效。希望这也能帮助其他人。</p> </answer> <answer tick="false" vote="2"> <p><a href="http://fetchak.com/ie-css3/" rel="nofollow">http://fetchak.com/ie-css3/</a> 适用于 IE 6+。如果 css3pie 不适合你,请使用这个。</p> </answer> <answer tick="false" vote="2"> <p>PIE.htc 对我来说非常有用(<a href="http://css3pie.com/" rel="nofollow">http://css3pie.com/</a>),但有一个问题:</p> <p>您应该写入PIE.htc的绝对路径。当我使用相对路径时,它对我不起作用。</p> </answer> <answer tick="false" vote="0"> <p>由于 Internet Explorer 本身不支持圆角。 因此,更好的跨浏览器处理方法是在角落使用圆角图像。许多著名网站都使用这种方法。</p> <p>您还可以在网络上找到圆形图像生成器。其中一个链接是 <a href="http://www.generateit.net/rounded-corner/" rel="nofollow">http://www.generateit.net/rounded-corner/</a></p> </answer> </body></html>

我在 IE8 中遇到圆角问题。我尝试了几种方法但没有成功。 这是我的代码: 无标题页面...</desc> <question vote="58"> <p>我在 IE8 中遇到圆角问题。我尝试了几种方法都没有成功。</p> <p>这是我的代码:</p> <pre><code><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Page</title> <style> body { font-family: Arial, Helvetica, sans-serif; font-size: 0.8em; padding: 2px; margin: 2px; color: #505050; line-height: normal; } p { margin: 4px; } .categoryheading3 { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; background-color: #297BB6; color: #FFFFFF; font-size: 16px; font-weight: 700; padding: 8px 0; text-align: center; margin: 0px; } .leftcolumn { width: 174px; padding: 8px; float: left; display: inline-block; background-color: transparent; /*--min-height: 500px*/ overflow: hidden; } .lefttop { display: inline-block; width: inherit; margin: 0 5px 2em 0; float: left; width: 160px; background-color: #FFFFFF; border: 2px solid #297BB6; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } </style> </head> <body> <div class="leftcolumn"> <div class="lefttop"> <H4 class="categoryheading3">Heading</H4> <p>sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text </p> </div> </div> </body> </html> </code></pre> <p>这会在 Firefox 中产生:</p> <p><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL1Fyc1BPLmpwZw==" alt="firefox example"/></p> <p>但是在 IE8 中是这样的:</p> <p><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL1h6dUNYLmpwZw==" alt="IE8 makes me sad"/></p> <p>如果有人有任何建议,我将不胜感激! </p> <p>编辑:约瑟夫建议使用pie.htc提供了帮助,但是我仍然在为这个元素不起作用而苦苦挣扎:</p> <pre><code>.categoryheading3 { -moz-border-radius: 5px 5px 0 0; -webkit-border-radius: 5px 5px 0 0; behavior: url(PIE.htc); background-color: #297BB6; color: #FFFFFF; font-size: 16px; font-weight: 700; padding: 8px 0; text-align: center; margin: 0px; } </code></pre> </question> <answer tick="true" vote="69"> <p>Internet Explorer(版本 9 以下)本身不支持圆角。</p> <p>有一个令人惊叹的脚本会神奇地为您添加它:<a href="http://css3pie.com/" rel="noreferrer">CSS3 PIE</a>。</p> <p>我已经使用了很多次,效果惊人。</p> </answer> <answer tick="false" vote="33"> <h1><a href="http://davidwalsh.name/css-rounded-corners" rel="nofollow noreferrer">IE8 中的圆角</a></h1> <p>Internet Explorer 8(及更早版本)<strong>不</strong>支持圆角,<strong>但是</strong>还有<strong>您可以考虑的其他解决方案:</strong></p> <ul> <li><p>使用圆角<pre><code>Images</code></pre>代替(<a href="http://www.generateit.net/rounded-corner/" rel="nofollow noreferrer"><strong>这个</strong></a>生成器是一个很好的资源)</p> </li> <li><p>使用<pre></pre>此处<a href="http://jquery.malsup.com/corner" rel="nofollow noreferrer"><strong></strong>中的</a><code>jQuery Corner plugin</code></p> </li> <li><p>使用一个非常好的脚本,称为<pre><code>CSS3 PIE</code></pre>,来自<strong><a href="http://css3pie.com" rel="nofollow noreferrer">这里</a></strong>(优点和缺点<a href="http://css-plus.com/2011/05/ie-and-rounded-corners/" rel="nofollow noreferrer">这里</a>)</p> </li> <li><p>从<pre></pre>这里<a href="http://www.cssjuice.com/25-rounded-corners-techniques-with-css/" rel="nofollow noreferrer"><strong></strong>结帐</a><code>CSS Juice</code></p> </li> <li><p>另一个好的脚本是<pre><code>IE-CSS3</code></pre>,来自<strong><a href="http://fetchak.com/ie-css3/" rel="nofollow noreferrer">这里</a></strong></p> </li> </ul> <p>尽管 CSS PIE 是最流行的解决方案,我建议您查看所有其他解决方案并选择最适合您需求的解决方案。</p> <p>我希望它有用。祝你好运!</p> </answer> <answer tick="false" vote="4"> <p>看到这篇文章后,我不知道 css3pie.com,一个非常有用的网站:</p> <p>但是经过测试,它对我来说也不起作用。但是我发现将其包装在 .PHP 文件中效果很好。所以代替:</p> <pre><code>behavior: url(PIE.htc); </code></pre> <p>用这个:</p> <pre><code>behavior: url(PIE.php); </code></pre> <p>我把我的放在一个名为 jquery 的文件夹中,所以我的是:</p> <pre><code> behavior: url(jquery/PIE.php); </code></pre> <p>所以去他们的下载或在这里获取:</p> <p><a href="http://css3pie.com/download-latest" rel="nofollow">http://css3pie.com/download-latest</a></p> <p>并使用他们的 PHP 文件。在 PHP 文件中,它解释了某些服务器未配置为正确使用 .HTC。这就是我遇到的问题。</p> <p>尝试一下!我做了,它有效。希望这也能帮助其他人。</p> </answer> <answer tick="false" vote="2"> <p><a href="http://fetchak.com/ie-css3/" rel="nofollow">http://fetchak.com/ie-css3/</a> 适用于 IE 6+。如果 css3pie 不适合你,请使用这个。</p> </answer> <answer tick="false" vote="2"> <p>PIE.htc 对我来说非常有用(<a href="http://css3pie.com/" rel="nofollow">http://css3pie.com/</a>),但有一个问题:</p> <p>您应该写入PIE.htc的绝对路径。当我使用相对路径时,它对我不起作用。</p> </answer> <answer tick="false" vote="0"> <p>由于 Internet Explorer 本身不支持圆角。 因此,更好的跨浏览器处理方法是在角落使用圆角图像。许多著名网站都使用这种方法。</p> <p>您还可以在网络上找到圆形图像生成器。其中一个链接是 <a href="http://www.generateit.net/rounded-corner/" rel="nofollow">http://www.generateit.net/rounded-corner/</a></p> </answer> </body></html>

回答 0 投票 0

Internet Explorer 不发帖

我正在做一个SAP接口项目,其中标准调用通常是Internet Explorer。我正在尝试收集 IE 中 HTML 处理的信息,并使用 ...

回答 1 投票 0

WebTransport 的浏览器兼容性

我正在探索 WebTransport 对于我的 Web 应用程序的潜力,但我担心它当前的浏览器支持。有人可以概述一下哪些浏览器支持 WebTransport,他们的

回答 1 投票 0

Selenium Webdriver 提交()与点击()

假设我在表单中有一个输入(看起来像一个按钮,并且像按钮一样交互),它会生成一些数据(好吧,服务器根据表单参数生成数据,但对于用户来说,...

回答 8 投票 0

Microsoft Edge API 和 IE 模式

我喜欢从普通选项卡内的侧边栏打开链接。这通常有效,但我无法在 Edge 浏览器的 IE 模式下打开选项卡内容。 如果我点击侧边栏中的链接: 选项卡内容

回答 1 投票 0

GPO 在关闭浏览器时清除浏览器缓存/数据

我需要创建一个GPO,以便在关闭浏览器时清除浏览器缓存/数据。我需要将其应用到 IE、Edge 和 Chrome 浏览器。 但检查它并没有办法清除所有缓存......

回答 1 投票 0

使用 powershell 在 Windows 10 本地计算机(不是 Windows 服务器)上的 IE 中启用和禁用 TLS 和 SSL

我一直在阅读一些文章和 Microsoft 文档,并查看一些 StackOverflow 问题,以在“高级”选项卡中的 Internet Explorer(IE)中更改/切换 tls 和 ssl 设置,但这些脚本让我满意

回答 2 投票 0

安装特定版本的 Internet Explorer 11

如何安装/降级到特定版本的 IE11? 我需要版本 11.0.9600.17501。 目前我安装了 11.0.9600.17801。 到目前为止,我真的想不出它是如何实现的...

回答 2 投票 0

WinForms WebBrowser - IE 退役后它还能工作吗?

我正在 Windows 桌面应用程序中使用 WebBrowser 控件。是否会受到 2022 年 6 月 15 日 Internet Explorer 停用的影响?

回答 2 投票 0

focus() 在 IE 11 中不起作用

我有以下 HTML: <%-sometext%> 我有以下HTML: <div id="blocked-layer-parent"> <textarea id="paint-textarea" placeholder="Enter text" autofocus><%-sometext%></textarea> <div id="blocked-layer"></div> </div> 在 IE 11 自动对焦 不起作用。我尝试使用像这样的 focus 函数: $("#paint-textarea").focus(); 或者这个: var textAreaElement = document.getElementById("paint-textarea"); setTimeout(function() { textAreaElement.focus(); }, 2100); 但是 textarea 在 IE 11 中没有获得焦点。我看了不同的决定(例如 jQuery focus() 有时在 IE8 中不起作用 和 focus 在 IE 中不起作用),但没有人不起作用。 感谢您的帮助。 P.S. textarea 的 placeholder 正在 IE 中转换为文本 (textelement)。我觉得很奇怪。在应用程序的其他模块中,我有 input 和 placeholder 用于搜索。这个占位符就像占位符一样(在输入字符后消失)。在一些显示 placeholder 的对话框发生文本转换并且搜索停止工作后。也许问题与此有关? 我在上尝试了纯html和js,它有效。也许 css 导致了这个问题。 在 DOMContentLoaded 事件中添加此代码(页面加载后) document.addEventListener("DOMContentLoaded", (e) => { document.getElementById("elementID").focus(); });

回答 2 投票 0

如何在样式表中仅针对 IE(任何版本)? [重复]

我有一个继承的项目,有些地方一团糟。这是其中之一。我只需要定位 IE(任何版本),无需更改 HTML,也无需 JavaScript 或任何其他

回答 5 投票 0

从 powerbuilder 以 Edge-IE 模式启动 FTP url

可以在 Edge IE 模式下从 powerbuilder 应用程序访问 FTP url 链接吗? 我使用的是powerbuilder 2019 R3。 需要帮助从 powerbuilder 在浏览器中打开 ftp url。 注意:知道 ftp 不支持...

回答 1 投票 0

重启电脑会清除浏览器缓存吗?

我有一个旧应用程序在用作墙壁显示器的锁定电脑上运行。它们都指向使用 IE11 的 URL 来获取网页视图。问题是,当网页更新时,即使我...

回答 1 投票 0

我可以强制在特定浏览器中打开链接吗?

我使用 Firefox 设计了一个网站,现在希望将软件电话集成到网页中,但不幸的是它是用 ActiveX 制作的,因此 Firefox 不支持它。 我试过打开我的...

回答 7 投票 0

Powershell:无法更新注册表路径,因为它不存在(但它实际上存在)

我们正在 Windows 8.1 中的 IE 上运行编码的 UI 测试,并通过 Visual Studio Team Services 进行。作为构建的一部分,我们运行一个 Powershell 脚本来禁用弹出管理器。该...

回答 3 投票 0

IE/Edge 下载 SharePoint 文件而不是直接打开进行编辑

我几天来遇到了一个问题。 在我的笔记本电脑上,在此问题之前,我可以通过在地址栏中键入 url 直接从 IE/Edge 打开共享点文件,然后打开文档...

回答 2 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.