Сообщение от pokk
|
как сделать так что бы когда пользователь меняет значение в инпуте, некоторые символы он не мог изменить, что бы они остались как были
|
Вот, например, не меняются первые 2 символа...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
var str='';
$('input').on('input',function(e){
if (str.length==2) {
if (this.selectionStart<3) {
this.value=this.value.replace(/./,'');
};
this.value=this.value.replace(/.?.?/,str);
} else {
str=this.value.slice(0,2);
};
});
});
</script>
</head>
<body>
<input type='text' />
</body>
</html>