如何给锚标签添加一定的值?
我有以下代码
<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>
,我想向锚标记添加值属性。怎么做呢?
I have the following code
<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>
And i want to add a value attribute to an anchor tag. How to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果要为某个值添加随机属性,可以使用数据属性:
If you want to add a random attribute for a value, you can use data attributes:
如果您使用 HTML5,则可以使用
data-
技术。编辑
使用
.data
而不是.attr
更合适If you are using HTML5 you can use the
data-
technique.EDIT
Usage of
.data
instead of.attr
is more appropriate您可以使用自定义数据属性,请参阅此。
然后使用 data() 函数访问它。
或者,您可以将其作为属性,而不是使用 json :
然后使用以下方法获取它:
you can use custom data attributes see this .
then access it using data() function.
Or instead of using json you can put it as an attribute :
then get it using :
点击
<a href="#" data-value="IE" id="click">Click</a>
data-value 是一个很好的属性。但..
您还可以向锚标记添加“rel”属性。
它描述了与链接指向的文档的关系。您还可以使用它来存储值。
像这样 -
data-value is a good attribute. but..
You can also add a " rel " attribute to your anchor tag.
it describes the relation to the document where the link points to. And you can also use it to store a value.
Like This -