Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

캔버스에 HTML 파일을 로드하는 방법은 무엇입니까?

<시간/>

이를 위해 SVG 요소를 사용할 수 있습니다. 예를 들어 보겠습니다.

<svg xmlns = "https://www.w3.org/2000/svg">
<foreignObject x = "0" y = "0" height = "500" width = "500">
   <body xmlns = "https://www.w3.org/1999/xhtml">
      <p>DEMO</p>
      <input type = "date"/>
   </body>
</foreignObject>
</svg>