我正在尝试使用从服务器端方法返回的 JS 片段更新 HTML 元素。
return MvcHtmlString.Create(@"<script type='text/javascript' src='//static.atgsvcs.com/js/atgsvcs.js'></script>
<script type='text/javascript'> ATGSvcs.setUOID(111111); </script>
<script type='text/javascript' src='http://as00.estara.com/as/InitiateCall2.php?accountid=111111'></script>");
然后我尝试用返回的 JS 更新一个 div。
LoadChatScript: function (chatScript) {
$jq('#metachatscript').replaceWith(chatScript)
}
但是,我不断收到“未终止的字符串文字”错误。我需要以某种方式清理 JS 吗?