jQuery從入門到精通 ~ EX2-8 [ JS利用document存取BODY內的元素並顯示元件屬性質(文件位置location,文件標題title,圖片路徑src,文件前景色fgColor,文件背景色bgColor) ]

jQuery從入門到精通 ~ EX2-8 [ JS利用document存取BODY內的元素並顯示元件屬性質(文件位置location,文件標題title,圖片路徑src,文件前景色fgColor,文件背景色bgColor) ]

jQuery從入門到精通 ~ EX2-8 [ JS利用document存取BODY內的元素並顯示元件屬性質(文件位置location,文件標題title,圖片路徑src,文件前景色fgColor,文件背景色bgColor) ]

JS利用document存取BODY內的元素並顯示元件屬性質(文件位置location,文件標題title,圖片路徑src,文件前景色fgColor,文件背景色bgColor)

程式內容:

 

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
    <head>
    <meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
    <title>document对象的使用</title>

    </head>

    <body>
        <h3>document对象的使用</h3>
        
        <p><img src=”images/php5.png” width=”867″ height=”454″ border=”0″ title=”” /> </p>
        
        <script language=”javascript”>
            document.write(“文件地址:”+document.location+”<br/>”);
            document.write(“文件标题:”+document.title+”<br/>”);
            document.write(“图片路径:”+document.images[0].src+”<br/>”);
            document.write(“前景色:”+document.fgColor+”<br/>”);
            document.write(“背景颜色:”+document.bgColor+”<br/>”);
        </script>
        
    </body>
</html>

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *