IE 给出的 php null 对象,但其他工作正常
IE 浏览器存在问题,它无法识别 HTMLEmbedElement 对象,并且无法继续执行。 我别无选择,因为编程代码中没有任何内容需要更新 我该如何解决这个浏览器问题请帮忙
there is a problem with IE browser it does not recognize object HTMLEmbedElement and not proceed for further execution .
i have no choice because there is nothing to be updated in programming code
how can i fix this browser issue please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IE 使用
IE uses
<object>
elements, not<embed>
elements. Read up on the<object>
tag, which is better supported across browsers anyway.一种常见的方法是这样编写代码:
您将
标记放入对象标记内部~不喜欢其中一个的浏览器将使用另一个。
A common approach is to write the code like this:
You put an
<embed>
tag inside the object tag~ browsers that don't like one will use the other.