gpt4 book ai didi

javascript - 除非我重新加载网页,否则 jQuery 不会再次运行

转载 作者:行者123 更新时间:2023-11-28 06:33:03 26 4
gpt4 key购买 nike

我创建了一个联系表单,当我点击一个按钮时我想从右边滑入,当我点击一个单独的按钮时我想滑回。到目前为止,我只能使用 .hide() 方法,但是当我再次单击按钮查看表单时,它不起作用。谁能解释一下为什么?

这是我的html代码

<div id="slidebottom" class="slide">            
<button id="button" class="btn btn-primary" role="button" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
</button>
<div class="well">
<form action="index.html" method="post">
<button id="close_button"><a><img id="close" src="img/close.png"></a></button>
<h1 class="heading">CONTACT US</h1>
<p>Register your interest and we will inform you of latest developments</p>

<input type="text" id="name" name="user_name">
<input type="email" id="email" name="user_email">
<input type="tel" id="phone" name="user_number">

<h1 class="register">REGISTER</h1>
</form>
</div>

和我的 jQuery

$(document).ready(function() {
$('#button').click(function() {
var $lefty = $(this).next();
$lefty.animate({
left: parseInt($lefty.css('left'),10) == 0 ?
-$lefty.outerWidth() :
0
});
});
});

$('#close_button').click(function() {
$('.well').hide();
});

最佳答案

$(document).ready(function() {
$('#button').click(function() {
var $lefty = $(this).next();
$('.well').show();
$lefty.animate({
left: parseInt($lefty.css('left'),10) == 0 ?
-$lefty.outerWidth() :
0
});
});
});

关于javascript - 除非我重新加载网页,否则 jQuery 不会再次运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34879566/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com