間違った入力フォームの入力フィールドを置き換えようとしています。これは、このコードを動作させるための方法ですか?入力フィールドの入力を間違えて入力してください。
<span class="input-bet">
<input type="text" placeholder="0" data-required="true" maxlength='6'/>
</span>
$('.input-bet > input').on('input propertychange paste', function(e) {
var youreg = /^[ю]+/gi;
for (var i = 0;i<this.value.length;i++){
if(this.value[i].match(youreg)){
this.value[i] = this.value[i].replace(youreg, '.');
}
}
誰かが必要な場合 - ここではあなたがテキスト入力要素の値に個々の文字に割り当てることができませんソリューション fiddle
ここにあなたのHTMLを配置できますか? – theinarasu
propertychangeの代わりにchangeを使用する必要があります。 – theinarasu