html属性名称小写

今天我在html中试了一下使用自定义属性,具体代码如下:

  <p class="task-edit-parent-content" taskId="{{parentId}}">{{parentName}}</p>

然后在运行过程中就报错了,具体查了一下,原因是在我的html中taskId变成了taskid。所以根本找不到中间的相对应的属性。

  <p class="task-edit-parent-content" taskid="3686">a</p>

网上找了一下,貌似所有的属性都应该是小写。引以为戒。

另外,有知道的能告诉我一下,是因为webstorm会自动转小写吗?

原文地址:https://www.cnblogs.com/neuscx/p/6061589.html