gpt4 book ai didi

jquery - 动态替换对话框按钮文本

转载 作者:太空宇宙 更新时间:2023-11-03 20:02:16 25 4
gpt4 key购买 nike

我有一个 jquery 对话框如下 -

<div data-role="dialog" id="msg-popup">
<div data-role="header">
<h1>Notification</h1>
</div>

<div data-role="content" id>
<b id="notif-subject"></b>
<p id="notif-popup-content">Test</p>
<a href="#notif-details1" id="show-notif" data-role="button">abc</a>
<a href="#" data-rel="back" data-role="button">Cancel</a>
</div>
</div>

我想动态地将“abc”更改为“pqr”。我该怎么做?我试着做 -

$("#show-notif").text = "pqr";

但它不起作用。我可能做错了什么?

最佳答案

.text 是一个函数,因此要设置元素的文本,您应该像下面这样使用,

$("#show-notif").text("pqr");

关于jquery - 动态替换对话框按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11193928/

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