DTD 中 img src 文件属性类型的语法

Posted

技术标签:

【中文标题】DTD 中 img src 文件属性类型的语法【英文标题】:syntax for attribute type of an img src file in DTD 【发布时间】:2018-10-02 19:02:20 【问题描述】:

当我验证我的 DTD 文件时,我收到此错误 --> 必须为元素类型 profile 声明属性 type。 我应该如何编辑我的 DTD 文件以消除此错误?

外部DTD

!ELEMENT profile ANY

XML 文件

<profile type="jpeg">C:\Users\username\Desktop\image3.jpg</profile>

XSL 文件

<td rowspan="6" align="left" style="color:#C0C0C0;"> <img src="profile" />

我必须删除标签才能在 Stack Overflow 上显示。

【问题讨论】:

【参考方案1】:

在 DTD 中声明属性为:

<!ELEMENT  profile       (#PCDATA)*                 >
<!ATTLIST  profile
             type        CDATA            #IMPLIED  >

【讨论】:

以上是关于DTD 中 img src 文件属性类型的语法的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 webpack 和 vue-loader 更改 .vue 文件中 <img> 的 src 属性?

2_DTD 介绍

vue中img的src绑定

html 中img标签中src属性放绝对路径不能显示?

HTML中img标签的src填本地绝对路径无法显示

javaScript的基础语法