[jQuery] TextBox中禁止剪下複製貼上

效果:有時使用者在自訂密碼等一些欄位,讓使用者不能將此TextBox進行剪下複製貼上功能。

Do not copy

[js]$(function () {
$(‘#myTextInput’).bind(‘cut copy paste’, function (e) {
e.preventDefault(); //取消動作
alert("禁止複製貼上");
});
});[/js]

DEMO:



Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>