<script type="text/x-jQuery-tmpl">
var gdsize = 1025;
if(window.innerWidth>=gdsize) {
<script type="text/javascript">
<!-- Some javascript here -->
window.cookieconsent_options = {"message":""Geek Dashboard uses cookies to make sure you get the best experience on our website." -","dismiss":"It's OK","learnMore":"More Details Here","link":"http://www.geekdashboard.com/cookies/","theme":"dark-bottom"};
}
{{html "</sc"+"ript>"}}
</script>
You can use {{html "</sc"+"ript>"}}
in place of </script>
Explanation [update]:
When you use a </script>
HTML tag inside a quoted (literal) string, the tag is treated as a closing tag rather than as a portion of the string. So you cannot directly use the </script>
tag inside a script section.
One work-around is to escape the </script>
tags and/or split up the <script>
tags:
var scriptEnd = "</scr" + "ipt>";
document.write(scriptEnd);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…