Сообщение от the_little
|
А как это сделать?
|
Можно как у
Nexus...
А можно так
<!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 test=function(e){
alert(e.target.id);
};
$('#t0, #t1').change(test);
});
</script>
</head>
<body>
<input type='text' id='t0' />
<input type='text' id='t1' />
</body>
</html>