是否可以动态替换html页面的脚本部分?

时间:2016-10-04 23:30:45

标签: javascript jquery ajax asp.net-ajax script-tag

我正在开始一个页面,其中一些罐装/模拟数据被送到Chart.JS图表,例如:

data: [2755, 2256, 1637, 1608, 1603, 1433, 1207, 1076, 1056, 1048],

我想用真实/实时数据替换虚假数据。我可以用从AJAX调用传回的内容替换html页面的<script>部分吗?

我,我可以这样做:

                    $.ajax({
                        type: 'GET',
                        url:
                            '@Url.RouteUrl(routeName: "QuadrantData"
routeValues: new { httpRoute = true, unit = "un", begdate = "bd", enddate 
"ed" })'
                    .replace("un", encodeURIComponent(_unit))
                    .replace("bd", encodeURIComponent(_begdate))
                    .replace("ed", encodeURIComponent(_enddate)),
                        contentType: 'text/plain',
                        cache: false,
                        xhrFields: {
                            withCredentials: false
                        },
                        success: function (returneddata) {
                            $("script").html(returneddata);
                            $("#newhourglass").addClass("hide");
                        },
                        error: function () {
                            console.log('error in ajax call t
QuadrantData');
                            $("#newhourglass").addClass("hide");
                        }
                    });

IOW,而不是:

$("html").html(returneddata);

...或某些类似的东西:

$("script").html(returneddata);

2 个答案:

答案 0 :(得分:2)

我将补充特拉维斯和其他评论者所说的话。

在解析HTML时,只要看到结束script标记,就会执行script个标记。剩下的只是带有内部文本的标签。我将使用下面的代码片段演示此行为。

script {
  display: block;
  background: white;
  min-height: 100px;
  border: 1px solid black;
  white-space: pre;
  font-size: 13px;
}
Below scripts counts upward every second. But editing it wont change its after effects.
<script contenteditable="true">
counter=0;
counterInterval = setInterval(function clicked(){
  console.log(counter++);
},1000);
</script>

此代码段的内容为contenteditable script。您可以在更改文本框时更改其内容。但你会发现它的效果不会改变。

或者,当新的script标记插入到页面中时(例如,使用javascript),它会被执行。下面的代码段演示了这一点。

reinsertScripts = function() {
  var script = document.querySelector("#reinsert");
  var parent = script.parentNode;
  var nscript = document.createElement("script");
  nscript.contentEditable = true;
  nscript.id = "reinsert";
  nscript.innerHTML = script.innerHTML;
  parent.removeChild(script);

  parent.appendChild(nscript);
}
script[contenteditable="true"] {
  display: block;
  background: white;
  min-height: 100px;
  border: 1px solid black;
  white-space: pre;
  font-size: 13px;
}
<p><span>Count: </span><span id="counter"></span></p>

Below scripts counts upward every second. Clicking reinsert button will rerun the script and you may see changes.
<script contenteditable="true" id="reinsert">
  counter = 0;
  clearInterval(window.counterInterval);
  counterInterval = setInterval(function clicked() {
    document.getElementById("counter").innerHTML=counter++;
  }, 1000);
</script>

<button onClick="reinsertScripts()">Reinsert script</button>

虽然这是你问题的答案,但我相信这不是你需要的答案。寻找“动态更改ChartJS数据”。基本上,您可以使用chart.addDatachart.removeData函数来更新图表的数据。

答案 1 :(得分:1)

  

我可以用从AJAX调用传回的内容替换html页面的[script]部分吗?

不,你不能。一旦脚本被浏览器解释,它只是display: none;的文本。实际上,您可以删除所有脚本$('script').remove(),而不会对页面本身产生任何影响。

这是因为一旦脚本执行完毕,环境就会根据代码的作用而改变,并反映执行代码的变化。

相反,您应该尝试更改已分配给的data变量,并使用该新数据重新初始化图表。或者,您可以在新数据进入时添加新图表。无论哪种方式,从ajax成功获取数据的过程都需要在代码中完成,而不是简单地替换脚本标记的html

为了执行从ajax调用返回的任何脚本,您可以在页面上放置的元素上使用.html(htmlWithScriptElements),jQuery将在内部为您执行脚本(使用eval)。