我試圖替換錯誤的輸入表單輸入字段。這有什麼辦法使這個代碼工作?從輸入字段替換錯誤的輸入
<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。 – theinarasu