gpt4 book ai didi

jquery - 在更改值 : `.html(' usa')` print it 之前

转载 作者:行者123 更新时间:2023-11-28 04:03:34 24 4
gpt4 key购买 nike

下一行更改了文本。在我更改它之前,我想检查文本是否不等于“事件”。我该怎么做?

if ($(".myimg").parent('p').find(".status").html != 'Active') {

// change the text
$(".myimg").parent('p').find(".status").html('Paused');

}

感谢任何帮助!

最佳答案

使用.html()获取当前html

var status = $(".myimg").parent('p').find(".status");

if (status.html() != 'Active') {

// change the text
status.html('Paused');

}

关于jquery - 在更改值 : `.html(' usa')` print it 之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17069838/

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