Windows Phone html5 アプリケーションを開発しています。コードでキャンバス タグを使用しています。ただし、キャンバスが無効な子であるというエラーが表示されます。これを修正する方法についてのアイデアをいただければ幸いです
私のコードを以下に示します。
<div class="imagebox">
<canvas id="canvas" height="500px" width="500px" style="width: 500px; height: 500px; border: solid 1pt black; margin-top: 15px;">
</canvas>
</div>
表示されるエラーは次のとおりです。
The element 'div' in namespace 'http://www.w3.org/1999/xhtml' has invalid child element 'canvas' in namespace 'http://www.w3.org/1999/xhtml'. List of possible elements expected: 'p, h1, h2, h3, h4, h5, h6, div, ul, ol, dl, pre, hr, blockquote, address, fieldset, table, form, a, br, span, bdo, map, object, img, tt, i, b, big, small, em, strong, dfn, code, q, samp, kbd, var, cite, abbr, acronym, sub, sup, input, select, textarea, label, button, noscript, ins, del, script' in namespace 'http://www.w3.org/1999/xhtml'.