JS的Document屬性和方法,希望大家瞭解下,方便以後的開發應用。
document.title //設定文件標題等價於HTML的title標籤
document.bgColor //設定頁面背景色
document.fgColor //設定前景色(文字顏色)
document.alinkColor //啟用連結(焦點在此連結上)的顏色
document.URL //設定URL屬性從而在同一視窗開啟另一網頁
document.fileCreatedDate //檔案建立日期,只讀屬性
document.fileModifiedDate //檔案修改日期,只讀屬性
document.charset //設定字符集 簡體中文:gb2312
document.fileSize //檔案大小,只讀屬性
document.cookie //設定和讀出cookie
———————————————————————
常用物件方法
document.write() //動態向頁面寫入內容
document.createElement(Tag) //建立一個html標籤物件
document.getElementById(ID) //獲得指定ID值的物件
document.getElementsByName(Name) //獲得指定Name值的物件
document.body.appendChild(oTag)
body-主體子物件
document.body //指定文件主體的開始和結束等價於body>/body>
document.body.bgColor //設定或獲取物件後面的背景顏色
document.body.alink //啟用連結(焦點在此連結上)的顏色
document.body.text //文字色
document.body.innerText //設定body>…/body>之間的文字
document.body.innerHTML //設定body>…/
JS的Document屬性和方法,希望大家瞭解下,方便以後的開發應用。
document.title //設定文件標題等價於HTML的title標籤
document.bgColor //設定頁面背景色
document.fgColor //設定前景色(文字顏色)
document.alinkColor //啟用連結(焦點在此連結上)的顏色
document.URL //設定URL屬性從而在同一視窗開啟另一網頁
document.fileCreatedDate //檔案建立日期,只讀屬性
document.fileModifiedDate //檔案修改日期,只讀屬性
document.charset //設定字符集 簡體中文:gb2312
document.fileSize //檔案大小,只讀屬性
document.cookie //設定和讀出cookie
———————————————————————
常用物件方法
document.write() //動態向頁面寫入內容
document.createElement(Tag) //建立一個html標籤物件
document.getElementById(ID) //獲得指定ID值的物件
document.getElementsByName(Name) //獲得指定Name值的物件
document.body.appendChild(oTag)
———————————————————————
body-主體子物件
document.body //指定文件主體的開始和結束等價於body>/body>
document.body.bgColor //設定或獲取物件後面的背景顏色
document.body.alink //啟用連結(焦點在此連結上)的顏色
document.body.text //文字色
document.body.innerText //設定body>…/body>之間的文字
document.body.innerHTML //設定body>…/