请问一下如何在网页上显示doc、ppt、或pdf文档,应该怎么做
网页名字为shenqingbiaoge.php,pdf文件就在同一目录下shenqingbiaoge.pdf,最好把代码也写出来,谢谢拉...
网页名字为shenqingbiaoge.php, pdf文件就在同一目录下shenqingbiaoge.pdf,最好把代码也写出来,谢谢拉
展开
3个回答
展开全部
<?php
/*$pdf = 'test.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="'.$pdf.'"');
readfile($pdf);*/
?>
<iframe id="myFrame" style="display:none" width="800" height="1131"></iframe>
<input type="button" value="Open PDF" onclick = "openPdf()"/>
<script language="javascript">
//Disabling right click on web page
document.oncontextmenu=new Function ("return false");
//Disabling right click on a particular div:
document.getElementById('myFrame').oncontextmenu=new Function ("return false");
//Disabling Text copy and right clicks:
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
function openPdf()
{
var omyFrame = document.getElementById("myFrame");
omyFrame.style.display="block";
omyFrame.src = "test.pdf";
}
</script>
/*$pdf = 'test.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="'.$pdf.'"');
readfile($pdf);*/
?>
<iframe id="myFrame" style="display:none" width="800" height="1131"></iframe>
<input type="button" value="Open PDF" onclick = "openPdf()"/>
<script language="javascript">
//Disabling right click on web page
document.oncontextmenu=new Function ("return false");
//Disabling right click on a particular div:
document.getElementById('myFrame').oncontextmenu=new Function ("return false");
//Disabling Text copy and right clicks:
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
function openPdf()
{
var omyFrame = document.getElementById("myFrame");
omyFrame.style.display="block";
omyFrame.src = "test.pdf";
}
</script>
来自:求助得到的回答
展开全部
网页上显示word,ppt,pdf等文档,基本上都是调用用户本身计算机上安装的对应软件,若用户计算机上没有安装对应的软件,无法仅通过浏览器来显示你说的内容的
追问
如果我想讲pdf上传到数据库中要用什么数据类型,我用的是mysql
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
赞同SH377587
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询