我正在尝试将<script>
标记添加到Jquery模板中,如下所示
<script id="invoiceTemplate" type="text/x-jquery-tmpl">
<script type="text/javascript">
alert('x');
</script>
</script>
我的问题出在模板中<script>
元素的结束标记中。我试着添加这个
@{
string xs =System.Web.HttpUtility.HtmlDecode(System.Web.HttpUtility.HtmlEncode("</script>"));}
}
<script id="invoiceTemplate" type="text/x-jquery-tmpl">
<script type="text/javascript">
alert('x');
@(xs)
</script>
解析结束标记并将其作为脚本放置,但结果类似于</script>
而不是</script>
,因为我的javascript代码无效
答案 0 :(得分:0)