0

我想在我的 wordpress 网站上实现 JSX Graph,并按照您推荐的方式安装插件。但是,如果您查看网站并向下滚动,您只会看到 JSXGraph 小程序的框架,但看不到网格等。那么我该怎么做才能正确显示呢?这是代码:

<p><script type="text/javascript"><br />
 var board = JXG.JSXGraph.initBoard('box', {boundingbox: [-10, 10, 10, -10], axis:true});<br />
</script></p>

并在头部

 <link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
 <script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
4

1 回答 1

0

糟糕,这是过时的信息。由于您的 wordpress 使用 https 运行,因此 JSXGraph 也必须使用 https 包含在内。请http:从这样的链接中删除:

<link rel="stylesheet" type="text/css" href="//jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<script type="text/javascript" src="//jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>

最好的祝愿,阿尔弗雷德

于 2019-03-04T21:53:28.417 回答