phpstorm javascript 自动缩进问题

发布于 2024-11-11 16:00:57 字数 584 浏览 3 评论 0原文

编写带有自动缩进的代码块。没有手动标签...

$(document).ready(function() {
        $("#welc").toggle(function() {
            $(this).val("hello");
        }, function() {
                    $(this).val('hell');
                });
    });
</script>

得到了这样的结果,但它应该是这样的:

<script type="text/javascript">
    $(document).ready(function() {
        $("#welc").toggle(function() {
            $(this).val("hello");
        }, function() {
            $(this).val('hell');
        });
    });
</script>

一个错误或者我遗漏了一些东西?

writing a code block with auto indent. no manual tabbing...

$(document).ready(function() {
        $("#welc").toggle(function() {
            $(this).val("hello");
        }, function() {
                    $(this).val('hell');
                });
    });
</script>

got a result like that but it should be like:

<script type="text/javascript">
    $(document).ready(function() {
        $("#welc").toggle(function() {
            $(this).val("hello");
        }, function() {
            $(this).val('hell');
        });
    });
</script>

a bug or i am missing something?

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

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

发布评论

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

评论(1

顾北清歌寒 2024-11-18 16:00:58

检查此问题。应在 2.1.1 或下次更新中解决。

Please check this issue. Should be addressed in 2.1.1 or next update.

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