JavaScript in HTML/XML: 格式错误
JavaScript in HTML/XML: not well formed error
我正在尝试从 JSON 中获取信息,但我收到一条错误消息,提示我的 XML 格式不正确。它指向
if((jsonResponse[0].error) && (jsonResponse[0].error.type == 101)) {
----------------------------^
上下文如下:
<?xml version="1.0" encoding="UTF-8" ?>
<!--As DOCTYPE either the strict XHTML declaration or
"-//HbbTV//1.1.1//EN" "http://www.hbbtv.org/dtd/HbbTV-1.1.1.dtd"
shall be used as described in the HbbTV-standard: A.2.6.2.-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--Required XML-namespace as described in the HbbTV-standard: A.2.6.2.-->
<html xmlns="http://www.w3.org/1999/xhtml">
将您的 JavaScript 包裹在 CDATA
部分,这样 &&
就不会被解释为标记:
<script>
<![CDATA[
JaveScript code here
]]>
</script>
更好的解决方案是将脚本代码移出到单独的文件中并使用 src 属性定义路径,您将不再需要使用 cdata
。
我正在尝试从 JSON 中获取信息,但我收到一条错误消息,提示我的 XML 格式不正确。它指向
if((jsonResponse[0].error) && (jsonResponse[0].error.type == 101)) {
----------------------------^
上下文如下:
<?xml version="1.0" encoding="UTF-8" ?>
<!--As DOCTYPE either the strict XHTML declaration or
"-//HbbTV//1.1.1//EN" "http://www.hbbtv.org/dtd/HbbTV-1.1.1.dtd"
shall be used as described in the HbbTV-standard: A.2.6.2.-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--Required XML-namespace as described in the HbbTV-standard: A.2.6.2.-->
<html xmlns="http://www.w3.org/1999/xhtml">
将您的 JavaScript 包裹在 CDATA
部分,这样 &&
就不会被解释为标记:
<script>
<![CDATA[
JaveScript code here
]]>
</script>
更好的解决方案是将脚本代码移出到单独的文件中并使用 src 属性定义路径,您将不再需要使用 cdata
。