通过 html() 在 JQuery 中按下鼠标更改链接内容

发布于 2024-10-21 12:08:35 字数 440 浏览 12 评论 0原文

再会!对于这个函数 html() 的示例 http://api.jquery.com/html/ 如何返回他们首先查看的链接,下次点击后?

就像使用“向下滚动”链接时所做的那样,按下它后更改为“向上滚动”(显示开关隐藏),并且在单击时所有这些都会继续。

如果在本示例中使用类似的代码

    <p>scroll down</p>
<script>
    $("p").click(function () {
      var htmlStr = $(this).html();
      $(this).html('scroll up');
    });
</script>

,则分配最后一个值。

Good day! For this example of function html() http://api.jquery.com/html/ How to return to link they first look, after next clicking?

like doing when use "scroll down" link, after pressing it changing to "scroll up" (show switch to hide) and all this continued in case of clicking.

if use code like this

    <p>scroll down</p>
<script>
    $("p").click(function () {
      var htmlStr = $(this).html();
      $(this).html('scroll up');
    });
</script>

in this example assigned last value.

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

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

发布评论

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

评论(2

身边 2024-10-28 12:08:35

您在寻找 .toggle() 吗?

$('p').toggle(function(){
  $(this).html('scroll up');
}, function(){
  $(this).html('scroll down');
});

JsFiddle 示例

Are you looking for .toggle()?

$('p').toggle(function(){
  $(this).html('scroll up');
}, function(){
  $(this).html('scroll down');
});

Example on JsFiddle

最近可好 2024-10-28 12:08:35

如果我明白你在问什么,这是一种方法:

window.textIndex = 1;
window.texts = [ "Scroll Up", "Scroll Down" ];
$("p").click(function () {
    textIndex = 1 - textIndex;
    $(this).html(texts[textIndex]);
});

If I understand what you're asking, this is one way to do it:

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