<html>
<head>
<title>動態添加Script</title>
<script>
o=document.createElement("script"); //先創建script元素o
o.text="alert('test!')"; //script o 的動作是alert('test')
document.documentElement.childNodes[0].appendChild(o); //加入到頁面中顯示
</script>
</head>
<body>
</body>
</html>
文章標籤
全站熱搜
留言列表