gpt4 book ai didi

jquery - 更改脚本中的数据属性

转载 作者:行者123 更新时间:2023-12-01 08:38:07 25 4
gpt4 key购买 nike

我的页面上有一个元素:

<a data-toggle="modal" data-nodeID="" class="quickView" data-target="#productModal" href="#">

这个元素在使用序列化的 ajax 对象时会被“重复”,我想做的是更改 data-nodeID 属性,但我似乎无法更改它。我尝试通过类名查找元素:

$(myTemplate).find('.quickView').attr({'data-nodeid': product.Id});

有谁知道这是怎么做到的吗?

谢谢,

最佳答案

你应该看看 jQuery .attr()文档。

.attr(attributeName, value)

attributeName
Type: String
The name of the attribute to set.

value
Type: String or Number or Null
A value to set for the attribute. If null, the specified attribute will be removed (as in .removeAttr()).

<小时/>

尝试设置属性时还要注意大写字母:

$(myTemplate).find('.quickView').attr('data-nodeID', product.Id);

关于jquery - 更改脚本中的数据属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51042149/

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