gpt4 book ai didi

Javascript 代码未在 WordPress 页面中运行

转载 作者:行者123 更新时间:2023-12-02 23:17:46 25 4
gpt4 key购买 nike

编辑这里是来自控制台的错误 /image/dbR1q.jpg

我想在 jsfiddle 中运行的 WordPress 页面中运行一些代码。 https://jsfiddle.net/w9ta5x2e/ 。我只是将代码放入编辑器中,但没有看到任何内容。但是,如果脚本很简单,例如:由 https://www.w3schools.com/js/tryit.asp?filename=tryjs_intro_inner_html 提供,则脚本将运行。

<!DOCTYPE html>
<html>
<body>

<h2>What Can JavaScript Do?</h2>

<p id="demo">JavaScript can change HTML content.</p>

<button type="button" onclick='document.getElementById("demo").innerHTML = "Hello JavaScript!"'>Click Me!</button>

</body>
</html>

我不知道如何创建 .js 文件,这是一个大学设置的 WordPress 网站,所以我怀疑我对 root 有太多控制权。

我无法在我的 WordPress 网站上创建文件,它是由大学管理的,不允许我这样做

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

<script type="text/javascript">
jQuery(function() {
$.getJSON(
'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/usdeur.json',
function (data) {

Highcharts.chart('container', {
chart: {
zoomType: 'x'
},
title: {
text: 'USD to EUR exchange rate over time'
},
subtitle: {
text: document.ontouchstart === undefined ?
'Click and drag in the plot area to zoom in' : 'Pinch the chart to zoom in'
},
xAxis: {
type: 'datetime'
},
yAxis: {
title: {
text: 'Exchange rate'
}
},
legend: {
enabled: false
},
plotOptions: {
area: {
fillColor: {
linearGradient: {
x1: 0,
y1: 0,
x2: 0,
y2: 1
},
stops: [
[0, Highcharts.getOptions().colors[0]],
[1, Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0).get('rgba')]
]
},
marker: {
radius: 2
},
lineWidth: 1,
states: {
hover: {
lineWidth: 1
}
},
threshold: null
}
},

series: [{
type: 'area',
name: 'USD to EUR',
data: data
}]
});
}
);
});
</script>

最佳答案

Wordpress 通常在 noConflict 模式下运行 jQuery,使得 $ 未定义

尝试改变

 jQuery(function() {// $ undefined here

jQuery(function($) { // $ is jQuery here

关于Javascript 代码未在 WordPress 页面中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57101492/

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