由于我的javascript,我只是做了一些验证并得到了一些错误......
Error: document type does not allow element "strong" here
$('#myobject').html('<strong>'+multiplier+'</strong><small> objects</small>');
看起来相当直接......我在html函数中添加了一些html但w3c不喜欢它...是否有更适合这种类型的doctype?
答案 0 :(得分:1)
是获得验证错误的实际(pre-javascript评估)源吗?
尝试将脚本内容标记为CDATA,即
<script type="text/javascript">/*<![CDATA[ */
$('#myobject').html('<strong>'+multiplier+'</strong><small> objects</small>');
/* ]]> */
</script>