Показать сообщение отдельно
  #2 (permalink)  
Старый 22.07.2016, 14:42
Профессор
Отправить личное сообщение для Manyasha Посмотреть профиль Найти все сообщения от Manyasha
 
Регистрация: 21.09.2015
Сообщений: 196

teslalight, здравствуйте
так подойдет?
<script type="text/javascript" src="http://yandex.st/jquery/1.4.4/jquery.min.js"></script>
<script>
function test(x){
//Тут Ваша функция
alert(x);
}
$(document).ready(function(){
	$("#inp").blur(function(){
	  test(this.value);
	});
})

</script>
<input type = "text" id = "inp"/>

или так
<script>
function test(x){
//Тут Ваша функция
alert(x);
}
function ff(){
  document.getElementById("inp").onblur = function(){test(this.value)}
}
</script>
<body onload = "ff()">
<input type = "text" id = "inp"/>
Ответить с цитированием