gpt4 book ai didi

jquery .html(...) 改变不变?

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

我尝试使用 .html()A 标记内进行更改,然后将其设为 ui-button。更改正常,但是当我调用刚刚修改的链接中的 .button 时,更改会丢失。

查看此jsfiddle

我认为问题在于新的内部 html 没有完全渲染,并且 .button 函数使用旧的内部 html 来对代码进行更改,将其恢复到之前的值html() 调用。

我已经尝试过this但不工作。可以看到here

我知道我可以解决这个问题,但我想知道为什么会发生这种情况,这是一个错误吗?

谢谢!

最佳答案

试试这个

   $('#button').button({ icons: { primary: 'ui-icon-folder-open'} });
$('#textChanger').click(
function (){
$('#button').button({
label: 'new text',
icons: {primary: 'ui-icon-custom', secondary: null}
});
return false;
})

here是工作 fiddle

关于jquery .html(...) 改变不变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8168397/

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