编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <p>点击按钮创建一个拾色器。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var x = document.createElement("INPUT"); x.setAttribute("type", "color"); document.body.appendChild(x); } </script> </body> </html>
结果:
【此窗口】
帮助?