摘要:
<button onclick="clickFn()">下载</button><script>function clickFn(){ window.open('文件路径.xls') }</script> 阅读全文
摘要:
<script> //禁止右键 $(document).bind("contextmenu",function(){return false;}); //禁止选择 $(document).bind("selectstart",function(){return false;}); //禁止F12 d 阅读全文