这就是场景 我正在使用Visual Studio 2015中的MVC 5 创造了一个观点 并在其中添加以下内容
@{
ViewBag.Title = "test page";
}
<h2>test page</h2>
<script type="text/javascript">
function anyfuction() {
var str = ' <script type="text/javascript">'
str += 'function abc() {console.log("why is this happining");'
str += '}'
str += '</script>';
}
</script>
你会注意到
str += '</script>';
不会工作
任何人都可以告诉我我做错了什么 还是Bug