ここでの回答を例として使用しましたが、次のように書きたいと思います。value.stringToSlug()
だから私はこれに変更しました:
// String to slug
String.prototype.stringToSlug = function(str) {
str = str.replace(/^\s+|\s+$/g, ''); // trim
str = str.toLowerCase();
str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
.replace(/\s+/g, '-') // collapse whitespace and replace by -
.replace(/-+/g, '-'); // collapse dashes
return str;
};
次のように文字列を渡すと機能します。
var value = $(this).val();
value.stringToSlug(value);