”>”被编码为“>”

发布于 2024-11-03 00:41:40 字数 838 浏览 1 评论 0原文

可能有人能够解释我,为什么“>”符号被编码为“>”。 我正在使用 mvc razor,我的一些 cshtml 视图使用您可以在下面找到的脚本:

<script type="text/javascript" language="javascript">
    $(document).ready(function () {
        var thumbnails = $("img.thumbnail");
        thumbnails.each(function () {
            $(this).load(function () {
                if ($(this).height() > $(this).width()) {
                    $(this).css("height", "100%");
                }
                else {
                    $(this).css("width", "100%");
                }
            });
        });
    });
</script>

Chrome 浏览器抛出异常:

未捕获的语法错误:意外的标记 ;

下一行:

if ($(this).height() &gt; $(this).width()) {

进行此编码/转换的原因是什么(手部曲线除外:D)?

或者有什么办法可以解决。

Probably, someone will be able to explain me, why ">" sign is encoded to ">".
I am using mvc razor and some my cshtml view uses script that you can find below:

<script type="text/javascript" language="javascript">
    $(document).ready(function () {
        var thumbnails = $("img.thumbnail");
        thumbnails.each(function () {
            $(this).load(function () {
                if ($(this).height() > $(this).width()) {
                    $(this).css("height", "100%");
                }
                else {
                    $(this).css("width", "100%");
                }
            });
        });
    });
</script>

Chrome browser throws exception:

Uncaught SyntaxError: Unexpected token
;

in next line:

if ($(this).height() > $(this).width()) {

What reason(s) can be to do this encoding/transform (except for curves of hands :D)?

Or some way to solve it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

空宴 2024-11-10 00:41:40

尝试

<script type="text/javascript" language="javascript">
    <![CDATA[
        $(document).ready(function () {
            var thumbnails = $("img.thumbnail");
            thumbnails.each(function () {
                $(this).load(function () {
                    if ($(this).height() > $(this).width()) {
                        $(this).css("height", "100%");
                    }
                    else {
                        $(this).css("width", "100%");
                    }
                });
            });
        });
    ]]>
</script>

或者将您的 javascript 放入外部 javascript 文件中。

(我在阅读了您的问题评论后发布了这个答案)

Try

<script type="text/javascript" language="javascript">
    <![CDATA[
        $(document).ready(function () {
            var thumbnails = $("img.thumbnail");
            thumbnails.each(function () {
                $(this).load(function () {
                    if ($(this).height() > $(this).width()) {
                        $(this).css("height", "100%");
                    }
                    else {
                        $(this).css("width", "100%");
                    }
                });
            });
        });
    ]]>
</script>

Or else put your javascript in an external javascript file.

(I post this answer having read your question comments)

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