-1

我正在使用 Razor v2 模板引擎从 WPF 呈现 HTML 页面,但从模板中的 JavaScript 收到错误。违规代码如下:

13    <script type="text/javascript">
14      var ie7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false;
15      if(!ie7){
16          WebFontConfig = {
17              google: { families: [ 'Droid Serif', 'Droid Sans', 'Satisfy', 'PT Sans' ] }
18          };
19      (function() {
20          var wf = document.createElement('script');
21          wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
22          '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
23          wf.type = 'text/javascript';
24          wf.async = 'true';
25          var s = document.getElementsByTagName('script')[0];
26          s.parentNode.insertBefore(wf, s);
27          })();
28      }
29      </script>

错误是:

{c:\Users\Echilon\AppData\Local\Temp\0sdz13xb.0.cs(15,28) : error CS1002: ; expected}

我尝试将脚本部分包装在<text>标签中,但无济于事。

4

1 回答 1

0

我最终改用了Spark 视图引擎,它支持<ignore>标签来指定要忽略的文本。

于 2012-12-30T16:11:38.053 回答