维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <script> function myFunction() { document.getElementById("demo").innerHTML = "Параграф змінено."; } </script> </head> <body> <h2>Демонстрація JavaScript в Head</h2> <p id="demo">Параграф.</p> <button type="button" onclick="myFunction()">Спробуй це</button> </body> </html>