gpt4 book ai didi

javascript - 使用 jquery 更改 wordpress 主题中的一些 css 属性

转载 作者:行者123 更新时间:2023-11-30 16:44:57 25 4
gpt4 key购买 nike

我想创建一个(或两个)按钮来将我的主题从黑暗切换到明亮,我对 jquery 一无所知,但我在 w3schools 和其他引用资料中阅读了一些内容,所以我编写了一个 Jquery 函数来改变我的 css 文件中的一些属性:

<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css({
"color": "white",

});
$("div").css({
"background-color" : "black",});
});
});

</script>

我将此脚本放在 header.php 文件中 header 标记的底部,并在站点的页脚添加了一个按钮

<button class="bright">طرح روشن</button>

但是当我点击按钮时什么也没有发生,当我在 w3shcools editor 上尝试这段代码时它可以工作,但是 my wordpress site 中的按钮什么也没做。这是我在 W3shcools 编辑器中的代码:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css({
"color": "white",
"background-color": "#98bf21",
"font-family": "Arial",
"font-size": "20px",
"padding": "5px"
});
});
});
</script>
</head>
<body>

<button>Set multiple CSS properties for all p elements</button>

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

</body>
</html>

如果有一种方法可以使用“href”调用该函数,我将不胜感激地帮助我如何调用它。

最佳答案

你有一个语法错误,试试这个,

<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css({
"color": "white"
});
$("div").css({
"background-color" : "black"});
});
});

</script>

"background-color": "black""color": "white" 之后你有一个 ,

是的,如果您不喜欢这个,请添加 jQuery 库,

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

关于javascript - 使用 jquery 更改 wordpress 主题中的一些 css 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31393427/

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