当我在Firefox浏览器中查看PDF时,允许用户突出显示文档上的文本并进行复制。有没有办法阻止用户突出显示文档?
我在FireFox中使用PDF.js构建
我尝试过css方法,但它不起作用
尝试1:
::-moz-selection{
background-color:Transparent;
color:#000;
}
::selection {
background-color:Transparent;
color:#000;
}
#zoomPage::-moz-selection,
#zoomPage::selection { ... }
ATTEMPT2:
$("#zoomPage").disableSelection();
Attemp3:
#zoomPage {
overflow: auto;
width: 30%;
height: 20%;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
嵌入pdf的方法
<object id = 'zoomPage' type='application/pdf' data= '1.pdf#scrollbar=0&toolbar=0&navpanes=0'><p>The PDF can not display</p></object>