idea裡程式碼報黃色:XML tag has empty body less... (Ctrl+F1) Reports empty tag body. The validation works in

加雞腿發表於2019-06-27

idea編輯器裡input標籤和textarea標籤的程式碼背景變黃,出了問題,當滑鼠放上去,顯示:
XML tag has empty body less… (Ctrl+F1) Reports empty tag body. The validation works in XML / JSP /JSPX / HTML / XHTML file types.
百度翻譯出來:XML標記沒有空正文…(ctrl+f1)報告空標記體。驗證在xml/jsp/jspx/html/xhtml檔案型別中工作。
不知道說的什麼
網上找了解決方案
原始碼如下:

<input class="form-group" id="appName" ng-model="model.apps.appName" readonly></input>

解決方案如下:(修改閉合標籤)

<input class="form-group" id="appName" ng-model="model.apps.appName" readonly>

相關文章