简体   繁体   中英

Why doesn't validator doesn't like my jquery?

I was just doing some validation and got some errors due to my javascript...

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

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

It seems fairly straight forward... i'm putting some html in a html function but w3c doesn't like it... Is there a doctype more suited to this?

is it the actual (pre-javascript evaluation) source that is getting the validation error?

Try marking the script contents as CDATA, ie

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM