Home  >  Article  >  Backend Development  >  关于 herf

关于 herf

WBOY
WBOYOriginal
2016-06-23 13:49:201475browse

<html><head>	<title>注册</title></head><body>	<a target="_blank" herf="login.html">登入</a>	<br/>	<a target="_blank" herf="register.html">注册</a></body></html


我这样不能跳转到login.php和register.php页面么?都是在同一个文件夹下面的。


回复讨论(解决方案)

哦,是login.html和register.html。

是  href 而不是 herf

如果是同级目录就行,
href

改成这样就可以了。

<html><head>    <title>注册</title></head><body>    <a target="_blank" href="login.html">登入</a>    <br/>    <a target="_blank" href="register.html">注册</a></body></html>

 href 写错了,应该是herf 

是href,不是herf。你用的什么编译器?用Dreamweaver写,它有提示的,如果没有提示就说明你输入错了

是href.....

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn