在 Javascript 中使用 MVCt4

发布于 2024-11-18 20:47:52 字数 464 浏览 2 评论 0原文

我最近成为了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2024-11-25 20:47:52

对不起。这最终不再是问题。在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文