Показать сообщение отдельно
  #5 (permalink)  
Старый 26.09.2015, 10:26
Аватар для EmperioAf
Профессор
Отправить личное сообщение для EmperioAf Посмотреть профиль Найти все сообщения от EmperioAf
 
Регистрация: 15.01.2015
Сообщений: 622

Для наглядности:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ГГ</title>
</head>
<body>
 <input type="text">
<script>
document.body.onload = function(){
function cal(){alert('gg')}
document.querySelector('input').oninput = cal;
}
document.body.onload = function(){
function cal(){alert('gggg')}
document.querySelector('input').oninput = cal;
}
</script>
</body>
</html>
Ответить с цитированием