我正在做最大化/最小化按钮功能。我的javascript代码无法正常工作。请提前给我任何解决方案。谢谢你。
这是我的代码
<html>
<head>
<script>
$(function () {
$(".button-open").hide();
$(".button-close").bind("click", function () {
$(".box").hide(100);
if ($(this).attr("class") == "button-close")
{
$(".button-open").show();
}
});
});
$(".button-open").bind("click", function () {
$(".box").show(100);
if ($(this).attr("class") == "button-open")
{
$(".button-open").hide();
}
});
</script>
</head>
<body>
<div class="button-open">Open</div>
<div class="box">
<div class="button-close">X</div>
</div>
</body>
</html>
答案 0 :(得分:3)
在使用JQuery语法之前,请务必记住包含JQuery文件。如果您不想使用JQuery,那么您需要编写纯Javascript。但是如果你只是在HTML中引用JQuery,它将是一个简单的解决方法。
$(function () {
$(".box").hide();
$(".button-close").bind("click", function () {
$(".box").hide(100);
if ($(this).attr("class") == "button-close")
{
$(".button-open").show();
}
});
});
$(".button-open").bind("click", function () {
$(".box").show(100);
if ($(this).attr("class") == "button-open")
{
$(".button-open").hide();
}
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="button-open">Open</div>
<div class="box">
<div class="button-close">X</div>
&#13;
答案 1 :(得分:2)
在脚本
之前添加jquery库<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>