gpt4 book ai didi

jquery - 如何给 anchor 标签添加一定的值?

转载 作者:行者123 更新时间:2023-12-03 22:06:21 25 4
gpt4 key购买 nike

我有以下代码

<a href="" (set value 1)>Inside Link which sets a value</a>

<script>
$(a).click(function() {
i=value of a tag;
$('#square').animate({'left': i * 360});
});

</script>

我想向 anchor 标记添加一个值属性。怎么做?

最佳答案

如果要为值添加随机属性,可以使用数据属性:

<a href="#" data-value="1">Text</a>

<script type="text/javascript">
$("a").click(function(){
i=$(this).data("value");
$('#square').animate({'left': i * 360});
});
</script>

关于jquery - 如何给 anchor 标签添加一定的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9148432/

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