私はこのプロトタイプを試しています。プロトタイプ内にさらに何かを追加します。何が間違っていますか?
String.prototype.replaceme = function(){
var toreplace;
toreplace = this.substr("<","<")
toreplace += this.substr(">",">");
return toreplace;
}
私はこのプロトタイプを試しています。プロトタイプ内にさらに何かを追加します。何が間違っていますか?
String.prototype.replaceme = function(){
var toreplace;
toreplace = this.substr("<","<")
toreplace += this.substr(">",">");
return toreplace;
}
置換を実行しようとしているように見えるので、replace()
代わりにsubstr()
次を使用する必要があります。
String.prototype.replaceme = function() {
return this.replace("<", "<").replace(">", ">");
}
そうは言っても、おそらくHTML エンティティをデコードするためのより良い方法があります。