通过淡入/淡出进行元素切换

发布于 2024-10-28 02:22:30 字数 1083 浏览 2 评论 0原文

我试图让下面的代码行淡出带有“.quote”类的表单,并将其替换为具有“.thanks”类的 DIV。单击按钮时。它仅在您单击输入区域时起作用,但不会淡入 div.thanks

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
  $(".quote, .thanks").click(function(){
    $('form:fadeIn(:.thanks)').fadeOut (5000);
  }); 

});

</script>

<style type="text/css">
<!--
.thanks {
    display: hide;
}
-->
</style>
</head>

<body>
<form action="" method="get" id="quote" class="quote">
  <p>
    <label>
      <input type="text" name="name" id="name" />
    </label>
  </p>
  <p>
    <label>
      <input type="submit" name="button" id="button" value="Submit" />
    </label>
  </p>
</form>
<div class="thanks">Thanks for contacting us, we'll get back to you as soon as posible</div><!-- End thanks -->

我还想知道如何让它获取访问者姓名并将其插入 div.thanks 中。

I'm trying to get the line of codes below to fadeOut the form with the class ".quote" and replace it with the DIV that has the class ".thanks." when the button is clicked. it only works when you click on the input area but doesn't fadein div.thanks.

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
  $(".quote, .thanks").click(function(){
    $('form:fadeIn(:.thanks)').fadeOut (5000);
  }); 

});

</script>

<style type="text/css">
<!--
.thanks {
    display: hide;
}
-->
</style>
</head>

<body>
<form action="" method="get" id="quote" class="quote">
  <p>
    <label>
      <input type="text" name="name" id="name" />
    </label>
  </p>
  <p>
    <label>
      <input type="submit" name="button" id="button" value="Submit" />
    </label>
  </p>
</form>
<div class="thanks">Thanks for contacting us, we'll get back to you as soon as posible</div><!-- End thanks -->

I'd also like to know how to make it get the visitors name and insert it in div.thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沩ん囻菔务 2024-11-04 02:22:31

您需要使用 CSS 将两个元素放置在同一位置。通常,这涉及使用position:absolute并设置left:和right:CSS样式。一旦正确设置,您就可以按预期使用 jQuery 的 fadeIn 和 fadeOut。

You need to use CSS to position both elements in the same location. Typically this involves using position:absolute and setting left: and right: CSS styles. Once that's set up correctly, you can use jQuery's fadeIn and fadeOut as you expect.

じ违心 2024-11-04 02:22:30

我想这就是你正在寻找的......

$(".quote").click(function(){
    $(this).fadeOut(5000, function(){
        $(".thanks").fadeIn();
    });
});

I think this is what you are looking for...

$(".quote").click(function(){
    $(this).fadeOut(5000, function(){
        $(".thanks").fadeIn();
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文