在 Javascript 中使用 MVCt4
我最近成为了 T4MVC 狂热者,现在我似乎无法在我的 MVC3 项目中使用可视化字符串。我目前正在尝试使用 T4MVC 链接到 JavaScript 函数内的脚本文件,但看来我要么做错了,要么不可能。代码如下。任何帮助将不胜感激。
<script type="text/javascript">
$(function () {
if (!Modernizr.inputtypes.range) {
$.getScript(@Links.Scripts.modernizr_1_7_min_js, function(){
$("input[type='range']").range();
});
}
});
</script>
编辑:
抱歉,JavaScript 中的 T4MVC 没有问题。查看页面源代码,链接文本已正确生成。
I have recently become a T4MVC fanatic and now I seem incapable of using visual strings in my MVC3 projects. I am currently trying to use an T4MVC link to a script file inside a JavaScript function but it appears that I'm either doing it wrong or it's not possible. The code follows. Any help would be appreciated.
<script type="text/javascript">
$(function () {
if (!Modernizr.inputtypes.range) {
$.getScript(@Links.Scripts.modernizr_1_7_min_js, function(){
$("input[type='range']").range();
});
}
});
</script>
EDIT:
Sorry, there is no issue with T4MVC in JavaScript. Looking at the page source, the link text is generated properly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对不起。这最终不再是问题。在Javascript中使用T4MVC没有问题。我想我被抛弃了,因为 VS 在编辑 JS 时不为 T4MVC 提供智能。感谢您关注大卫。
Sorry. This ended up being a non-issue. There is no issue with using T4MVC in Javascript. I guess I was thrown off because VS does not provide intellisence for T4MVC while editing JS. Thanks for following up David.