通过 html() 在 JQuery 中按下鼠标更改链接内容
再会!对于这个函数 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在寻找
.toggle()
吗?JsFiddle 示例
Are you looking for
.toggle()
?Example on JsFiddle
如果我明白你在问什么,这是一种方法:
If I understand what you're asking, this is one way to do it: