我正在尝试构建一个使用正则表达式替换字符的小插件。如果我在文本框中删除超过 1 个字符并模糊,它只会删除该字符。它不会“镜像”文本框中的值,并且看起来具有当前值。
(function ($) {
$.fn.friendlyUrl = function (destinationID) {
return this.blur(function () {
var title = $(this).val();
var url = title
.replace(/[åä]/g, "a")
.replace(/[ÅÄ]/g, "A")
.replace(/ö/g, "o")
.replace(/Ö/g, "O")
.replace(/[^a-zA-Z0-9]/g, "-")
.replace(/^-+/, "")
.replace(/-+$/, "")
.replace(/-+/g, "-")
.toLowerCase();
$(destinationID).val(url);
});
};
})(jQuery);
我称之为:
$("#PageName").friendlyUrl("#Url");
这里可能有什么问题?