jQuery を使用して、HTML ドキュメントにテキストを追加したいと考えています。追加されたテキストのフォントの太さはBOLDにする必要があります。そのために私はこれを行います:
<script type="text/javascript">
$('.append-here').append('<strong>'+$.cookie('XYZ')+'</strong>'));
</script>
これはこのように機能しますが、これにより W3C エラーが発生します: document type does not allow element "strong" here。
これでスクリプトタグの外にタグを書くとうまくいきstrong
ません。