我正在尝试禁止在embed标签中的嵌入式pdf上单击鼠标右键,以便在右键单击时不会显示“另存为..”,“打印”等内容。但不起作用。我正在使用Chrome浏览器。
我非常感谢大家的帮助,并在此先感谢一百万。
我尝试使用此方法,但无法正常工作。 How to disable Right Click on Ifram Pdf file
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="testingPDF.aspx.cs" Inherits="testingPDF" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script>
document.onmousedown = disableRightclick;
var message = "Right click not allowed !!";
function disableRightclick(evt){
if(evt.button == 2){
alert(message);
return false;
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div >
<embed id="fraDisabled" src="pdf/Bootstrap_tutorial.pdf#embedded=true&toolbar=0&navpanes=0&scrollbar=0;readonly=true;disableprint=true" style="width:100%;height:900px" />
</div>
</form>
</body>
</html>