如何通过在jquery中的同一浏览器或其他浏览器中复制和粘贴URL来防止用户浏览网页 我尝试了这段代码,但它没有用。
$('input[type=text],textarea').bind('copy paste cut drag drop', function (e) {
e.preventDefault();
});
答案 0 :(得分:0)
您可以使用javascript在新窗口中打开表单,以便不会显示位置/地址栏。所以它无法复制。
window.open('your url here','winname','directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=350');
希望这会有所帮助......