1. 링크 생성
< 스크립트 언어= "javascript">
var o = document.body;
//링크 생성
function createA(url,text)
{
var a = document.createElement(" a") ;
a.href = url;
a.innerHTML = text;
a.style.color = "red";
o.appendChild(a);
}
createA ("http://www.jb51.net/","牛C网")
2. DIV 생성 >
3. 양식 항목 만들기
코드 복사
{
var input = document.createElement ("입력");
input.type = sType;
input.value = sValue;
o.appendChild(input)
createInput("button","ooo" );
4. 테이블 생성
코드 복사
코드는 다음과 같습니다.