为什么验证器不喜欢我的jquery?

时间:2010-02-26 04:58:55

标签: javascript jquery validation

由于我的javascript,我只是做了一些验证并得到了一些错误......

Error: document type does not allow element "strong" here

$('#myobject').html('<strong>'+multiplier+'</strong><small>&nbsp;objects</small>');

看起来相当直接......我在html函数中添加了一些html但w3c不喜欢它...是否有更适合这种类型的doctype?

1 个答案:

答案 0 :(得分:1)

是获得验证错误的实际(pre-javascript评估)源吗?

尝试将脚本内容标记为CDATA,即

<script type="text/javascript">/*<![CDATA[ */
$('#myobject').html('<strong>'+multiplier+'</strong><small>&nbsp;objects</small>');
/* ]]> */
</script>