2017-03-01 8 views
0

をフォーマット自動的にオフになり、JavaScriptのようなの一片があります:私はそれを回避IDEAは、HTMLファイル内のhtml

if(isEmployer) { 
} 

を入れたら

{text: "EmployeeManagement", icon: "code", children: [ 
    {text: "HR", link: [[@{/employeeManage/hr.html}]]}, 
    {text: "Developer", link: [[@{/employeeManage/developer.html}]]}, 
]}, 

が、しかし、それはのように上記のコードをフォーマット:

if (isEmployer) { 
       { 
        text: "EmployeeManagement", children 
       : 
        [ 
         {text: "HR", link: [[@{ 
        /employeeManage 
        /hr.html 
       } 
       ]] 
       }, 
        { 
         text: "Developer", link 
        : 
         [[@{ 
         /employeeManage 
         /developer.html 
        } 
        ]] 
        } 

これを自動的にオフにする方法はありますか? EDIT:これは、ファイル構造である:

<!DOCTYPE html> 
<html lang="en" 
     xmlns:th="http://www.thymeleaf.org"> 
<head> 

    .... 
</head> 
<body data-module="app" style="overflow: hidden"> 
<div id="desktop"></div> 
<script th:inline="javascript"> 
    /*<![CDATA[*/ 

    var isEmployer = ... 

    ... 
    {text: "EmployeeManagement", icon: "code", children: [ 
    {text: "HR", link: [[@{/employeeManage/hr.html}]]}, 
    {text: "Developer", link: [[@{/employeeManage/developer.html}]]}, 
    ]}, 
    ... 
+0

htmlファイルを投稿できますか?そこで、スクリプトはどこにあるのかわかります。Ifは

関連する問題