Javascript代码未在Wordpress页面中运行

时间:2019-07-18 19:30:50

标签: javascript wordpress highcharts custom-wordpress-pages

在这里编辑是控制台https://imgur.com/a/OvP9cRr中的错误

我想在jsfiddle中工作的Wordpress Pages中运行一些代码。 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网站,因此我怀疑我对根目录是否有很多控制权。

我无法在我的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>

2 个答案:

答案 0 :(得分:0)

Wordpress通常以noConflict模式运行jQuery,导致$未定义

尝试更改

 jQuery(function() {// $ undefined here

收件人

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

答案 1 :(得分:0)

您可以尝试安装诸如Elementor之类的页面构建器,并将此代码插入HTML小部件中,也可以将JSFiddle嵌入到页面中。