我有一个搜索文本框。出于某种原因,.blur()将无法在我的计算机上运行。我创建了一个测试文件来测试它,它仍然不起作用:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$('#search').blur(function() {
alert('hello');
});
</script>
</head>
<body>
<input id="search" value="hello" type="text" />
</body>
</html>
答案 0 :(得分:1)
$(document).ready(function() {
$('#search').blur(function() {
alert('hello');
});
});
答案 1 :(得分:0)
也许只是使用非jquery做事的方式?
document.getElementById("search").addEventListener('blur',function(){
document.getElementById("search").value = "DEFAULT_VALUE";
});