HTML DOM URL ÊôÐÔ
¶¨ÒåºÍÓ÷¨
URL ÊôÐÔ¿É·µ»Øµ±Ç°ÎĵµµÄ URL¡£
Óï·¨
document.URL
˵Ã÷
Ò»°ãÇé¿öÏ£¬¸ÃÊôÐÔµÄÖµÓë°üº¬ÎĵµµÄ Window µÄ location.href ÊôÐÔÏàͬ¡£²»¹ý£¬ÔÚ URL ÖØ¶¨Ïò·¢ÉúµÄʱºò£¬Õâ¸ö URL ÊôÐÔ±£´æÁËÎĵµµÄʵ¼Ê URL£¬¶ø location.href ±£´æÁËÇëÇóµÄ URL¡£
ʵÀý
<html>
<body>
The URL of this document is:
<script type="text/javascript">
document.write(document.URL
)
</script>
</body>
</html>