我正在尝试通过单击<div>
中的一些文本来展开和折叠<div>
。现在的行为非常奇怪。例如,如果我在<div>
展开后单击文本... <div>
将折叠,然后再次展开。另外,如果我在div
展开后单击其中的某个位置,它将再次折叠,我认为这是因为我触发了动画,因为要动画化的<div>
位于 Package 器<div>
内。代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<!-- Links -->
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- Scripts -->
<script type="text/javascript" src="jQuery.js"></script>
<script>
// document script
$(function(){
// login box event handler
$('#login').click(function() {
$('#loginBox').toggle(
function() {
$('.loginBox').animate({
height: '150px'
},
'1000'
);
$('#username').show();
$('#password').hide();
$('#placeHolder').show();
},
function() {
$('.loginBox').animate({
height: '50px'
},
'1000'
);
$('#username').hide();
$('#password').hide();
$('#placeHolder').hide();
}
);
});
// username field focus and blur event handlers
$('#username').focus(function() {
if($(this).hasClass('placeHolder')){
$(this).val('');
$(this).removeClass('placeHolder');
}
});
$('#username').blur(function() {
if($(this).val() == '') {
$(this).val('Username');
$(this).addClass('placeHolder');
}
});
// password field focus and blur event handlers
$('#placeHolder').focus(function() {
$(this).hide();
$('#password').show();
$('#password').focus();
$('#password').removeClass('placeHolder');
});
$('#password').blur(function() {
if($(this).val() == '') {
$('#placeHolder').show();
$(this).hide();
}
});
});
</script>
</head>
<body>
<div id="loginBox" class="loginBox">
<a id="login" class="login">Proceed to Login</a><br />
<div>
<form>
<input type="text" id="username" class="placeHolder" value="Username" />
<input type="password" id="password" class="placeHolder" value="" />
<input type="text" id="placeHolder" class="placeHolder" value="Password" />
</form>
</div>
</div>
</body>
</html>
有什么想法吗?
1条答案
按热度按时间5jvtdoz21#
是的,使用event.stopPropagation();
另外,如果你担心动画在队列中卡住(点击太多次,动画就一直在走),你可以使用stop..
进一步了解toggle -您的实现会在单击登录时向#loginBox添加一个单击处理程序。
//登入方块事件行程常式
更准确一点。