梦之都
JavaScript教程
,
location.href
属性示例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>JavaScript href 属性示例</title> </head> <body> <script type="text/javascript"> document.writeln(location.href); </script> <input type="button" value="将网址定向到梦之都首页!" onclick="location.href='http://www.dreamdu.com/';" /> </body> </html>