不要在textarea中使用jQuery链接

时间:2014-10-27 14:45:48

标签: javascript jquery html

你们好吗?

我需要阻止用户在textarea中输入或粘贴链接。

所以,我需要的功能块链接如下:

http://, http://www, https://, https://www

我的代码:

$(function() {
$("#textarea").keyup(function() {
    if(/^(http|https|ftp):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/i.test($(this).val())){
        console.log("There is URL");
    } else {
        console.log("No URL");
    }
});
});

当我在其他字符中键入URL时,脚本无法识别链接。

好的,非常感谢你的帮助。

0 个答案:

没有答案