Сообщение от Russia86rus
|
Имеется форма
...
Что я не правильно делаю
|
Начинаем учиться делать примеры и тестить их...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://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'>
</script>
</head>
<body>
<form>
<select onchange="function1();">
<option>23</option>
</select>
<input type = text id='ddd'>
<input type = text>
<input type = text>
</form>
<script>
function1() {
alert(this)
if ($(this).val()=='23') {
$('#ddd').attr('disabled','disabled');
};
</script>
</body>
</html>
Найди "что тут не работает и почему"...