Embed tag length issues

时间:2014-02-10 作者:Shawn

我的媒体库中有一个pdf,我正试图将其嵌入到页面中。宽度可以,但长度不行。我试图在屏幕上基本上表示8.5 x 11。由于屏幕长度仅为3-4英寸,其余为滚动条。

<embed src=\'http://example.com/wp-content/uploads/.../somefile.pdf\' width=\'1000px\' length=\'1200px\' />
我甚至尝试使用length=\'100%\'。

1 个回复
SO网友:Shawn

我能弄明白。嵌入标记不适用于pdf,因为它不通过浏览器渲染。使用对象标记有效:

<object data=\'http://example.com/wp-content/uploads/...somefile.pdf\' type="application/pdf" 

width="1000px" height="1200px">

<p>It appears you don\'t have a PDF plugin for this browser. You can download the pdf
<a href=\'http://example.com/wp-content/uploads/.../somefile.pdf\'>here</a>
</p>

</object>

结束

相关推荐

AJAX:$html中的WordPress过滤器无法正常工作

我通过一些AJAX魔术发送HTML内容,虽然一切都如我所愿工作,但输出的内容与页面中的内容大致相同:\"http://permalink.comtitle\" 这就好像所有html标记(<;a>和<;p>)都被丢弃了一样。下面是函数中的PHP部分。php,我给$html赋值:if ($query->have_posts()){ while ($query->have_posts()){ $query-&g