作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
" width="1024" height="600"> -6ren">
我正在使用以下 html 将 PDF 嵌入到网页中
<object id="pdf" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="1024"
height="600">
<param name="SRC" value="/GetDoc.ashx?SOID=<%=Html.Encode(Model.OrderID)%>" />
<embed src="/GetDoc.ashx?SOID=<%=Html.Encode(Model.OrderID)%> "
width="1024" height="600">
</embed>
</object>
PDF 的加载速度可能有点慢,因此我想隐藏该对象并显示加载消息/gif,直到其完全加载,这样用户就不会看到空白屏幕。
有人可以建议一种使用 jquery ajax 来做到这一点的方法
最佳答案
以下代码有效。
<div style="background: transparent url(loading.gif) no-repeat">
<object height="1250px" width="100%" type="application/pdf" data="aaa.pdf">
<param value="aaa.pdf" name="src"/>
<param value="transparent" name="wmode"/>
</object>
</div>
关于JQuery ajax 用于在对象标签中加载 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2054859/
我是一名优秀的程序员,十分优秀!