样式一:
![图片[1]-子比主题美化-顶部多功能组件搜索框美化-阿呆日记](https://sp-ao.shortpixel.ai/client/to_webp,q_glossy,ret_img,w_1024,h_455/https://dai.daixb.top/wp-content/uploads/2025/02/20241028110619594-image-135.webp)
自定义css
自定义JavaScript代码
document.addEventListener("DOMContentLoaded", function () {
const button = document.querySelector(".search-input-text .abs-right button.null");
if (button) {
const searchText = document.createElement("span");
searchText.textContent = "搜索";
searchText.classList.add("search-text");
button.appendChild(searchText);
}
});第二种:
![图片[2]-子比主题美化-顶部多功能组件搜索框美化-阿呆日记](https://sp-ao.shortpixel.ai/client/to_webp,q_glossy,ret_img,w_1024,h_519/https://dai.daixb.top/wp-content/uploads/2025/02/20241028110843997-image-136.webp)
自定义CSS
自定义JavaScript代码
document.addEventListener("DOMContentLoaded", function () {
const button = document.querySelector(".search-input-text .abs-right button.null");
if (button) {
const searchText = document.createElement("span");
searchText.textContent = "搜索";
searchText.classList.add("search-text");
button.appendChild(searchText);
}
});© 版权声明
© 版权声明 All Rights Reserved
THE END
文章很赞,支持一下吧~ 还没有人为TA打赏
暂无打赏用户








- 最新
- 最热
只看作者