Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的html结构,
<button class="myBtn myBtnCTA signIn" onclick="javascript:;"> <span>Close</span> </button>
我想将文本从“关闭”更改为“保存并关闭”。我试过这个$(button .myBtn myBtnCTA signIn span).text(),但这似乎不起作用。有什么建议吗??
$(button .myBtn myBtnCTA signIn span).text()
使用.点连接多个类,也在quotes.
.
quotes
现场演示
$('button.myBtn.myBtnCTA.signIn span').text()
$(".myBtn.myBtnCTA.signIn span").text("Hello world!");
请注意,此选择器可能效率低下。
这应该工作
$(".myBtn.myBtnCTA.signIn>span").text("Save & Close");
工作演示
试试这个代码
$(".myBtn.myBtnCTA.signIn span").text("text");