gpt4 book ai didi

jquery - 将 img 替换为 div jQuery

转载 作者:行者123 更新时间:2023-12-01 06:03:54 26 4
gpt4 key购买 nike

我希望将带有类的图像替换为内部带有文本的 div,我该怎么做?

<script>
$('img.vCSS_img_history_off').replaceWith('<div id="button">Turn History Off</div>');
</script>

我知道代码搞砸了,但这只是为了描绘我正在寻找的东西,有什么建议吗?

最佳答案

在搜索 DOM 中的元素之前,您需要确保 DOM 已准备好:

$(document).ready(function(){
$('img.vCSS_img_history_off').replaceWith('<div id="button">Turn History Off</div>');
});

或者,您可以在图像后添加所需的任何内容,然后将其删除:

$(document).ready(function(){
$("img").after("<div>Inserted div</div>").remove();
});

Example .

有关 .after() 的更多信息 here以及更多关于 .remove() here .

关于jquery - 将 img 替换为 div jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8468232/

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