点击togglediv
后, commentdiv
必须可见或隐藏。以下代码在Firefox上运行,但不在Internet Explorer上运行:
$(document).ready(function(){
$("#togglediv").click(function(){
if( $("#commentdiv").is(":visible") ) {
$("#commentdiv").hide("slow");
$("#togglediv").text("show");
} else {
$("#commentdiv").show("slow");
$("#togglediv").text("hide");
}
});
});
答案 0 :(得分:6)
jquery中有一个功能切换,无需检查可见性即可完成您想要的功能:
$("#commentdiv").toggle("slow");
答案 1 :(得分:5)
我会尝试:
$(document).ready(function() {
$("#togglediv").click(function() {
// note: do this first because the :hidden test fails if you
// do it after triggering a slow animation
$("#togglediv").text($("#commentdiv").is(":hidden") ? "Hide" : "Sgiw");
$("#commentdiv").toggle('slow');
});
});
编辑:为了回应您的评论,此示例在IE7 / FF3中完美适合我。 注意:我在使用慢效果时必须颠倒语句的顺序。有趣的!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test</title>
<style type="text/css">
#togglediv { padding: 5px; background-color: yellow; }
#commentdiv { padding: 5px; background-color: #CCC; height: 100px; }
</style>
</head>
<body>
<div id="togglediv">Hide</div>
<div id="commentdiv">thanks for answer. but i have tried this code, it was okay. i want to use toggle("slow") effect. this effect is runing firefox, but not i.e. is it a bug?</div>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript">
$(function() {
$("#togglediv").click(function() {
$("#togglediv").text($("#commentdiv").is(":hidden") ? "Hide" : "Show");
$("#commentdiv").toggle('slow');
});
});
</script>
</body>
</html>
答案 2 :(得分:2)
你错过了结束}
尝试
$(document).ready(function(){
$("#togglediv").click(function(){
if($("#commentdiv").is(":visible")){
$("#commentdiv").hide("slow"); $("#togglediv").text("show");
}
else{
$("#commentdiv").show("slow"); $("#togglediv").text("hide");
}
}
});
答案 3 :(得分:1)
我注意到有些东西很有意思,而且我认为它在上面被cletus所触及,如果你用“文本”行切换“show”行的顺序 - 它似乎开始工作了。我对此没有任何解释;很高兴知道幕后发生的事情。
答案 4 :(得分:1)
if(document.getElementById(ThisObj).style.display == 'none')
{
document.getElementById(ThisObj).style.display = 'block';
}
else
{
document.getElementById(ThisObj).style.display = 'none';
}
它有效:)