gpt4 book ai didi

jquery - 在 Jquery 中创建具有自定义 HTML 属性的元素

转载 作者:搜寻专家 更新时间:2023-10-31 08:03:30 25 4
gpt4 key购买 nike

我正在尝试使用 jQuery 生成 anchor ,使用一些自定义 HTML5 属性来获得类似的东西。

$('<a/>', {href : "#local_anchor",text: "DUMMY_TOKEN", onClick:"remote_function('token')"}).attr("data-toggle", "modal")

如果我使用这段代码,它工作得很好。

$('<a/>', {
href : "#local_anchor",
text: "DUMMY_TOKEN",
onClick:"remote_function('token')"
}).attr("data-toggle", "modal")

但我想将 data-toggle 作为参数传递给第一个 href、文本等。当我尝试这样做时,出现语法错误。

我也尝试过使用 .data() 但我无法在标记中设置值,只能在 DOM 中设置。

最佳答案

只要引用 data-toggle 就可以了:

$("<a/>", {
href: "#local_anchor",
text: "DUMMY_TOKEN",
onClick: "remote_function('token')",
"data-toggle": "modal"
});

关于jquery - 在 Jquery 中创建具有自定义 HTML 属性的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11360178/

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