私は以下のファイルを実行しようとしています。ローカルドライブ上で実行すると完全に正常に動作しますが、ネットワークドライブに配置すると動作しなくなります。なぜこれが起こっているのでしょうか?ネットワークドライブからJavaScriptが機能しない
以下は、実行しようとしているコードです。ここからはピボット式を使用しています:https://github.com/nicolaskruchten/pivottable。
<!DOCTYPE html>
<html>
<head>
<title> Demo</title>
<!-- external libs from cdnjs -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- PivotTable.js libs from ../dist -->
<link rel="stylesheet" type="text/css" href="../dist/pivot.css">
<script type="text/javascript" src="../dist/pivot.js"></script>
<style>
body {font-family: Verdana;}
</style>
<!-- optional: mobile support with jqueryui-touch-punch -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js"></script>
</head>
<body>
<script type="text/javascript">
// This example shows custom aggregators using
$(function(){
var tpl = $.pivotUtilities.aggregatorTemplates;
$.getJSON("col.json", function(frontier) {
$("#output").pivotUI(frontier, {
rows: ["Manager"], cols: ["Sector"],
aggregators: {
"Number of Positions": function() { return tpl.count()() },
"Manager Weight": function() { return tpl.sum()(["Port"])},
"Benchmark XGCC Weight": function() { return tpl.sum()(["Bench"])},
}
});
});
});
</script>
<div id="output" style="margin: 30px;"></div>
</body>
</html>
'../ dist/pivot.js'と' ../ dist/pivot.css'をネットワークドライブに入れましたか?ブラウザのコンソールまたはネットワークタブにエラーがありますか? – nnnnnn
プロジェクト全体をネットワークドライブまたはこのファイルだけに移動していますか?スクリプト/ CSSファイルへの相対パスがあります。 – Jecoms
ファイルプロトコルのJavaScriptをオフにすると、セキュリティ設定が異なります。コンソールにエラーメッセージはありますか? [ネットワーク]タブに404が表示されていますか? – epascarello