日期:2014-05-17  浏览次数:20441 次

A 标签怎么跨域
  <a href="www.sina.com.cn" >新浪</a>

  我在网站上添加一个超链接,可是我点击超链接 http://localhost:2224/Module/UserControl/www.sina.com.cn

他在我前面加了段localhost:2224;怎么吧他去掉
------最佳解决方案--------------------
 <a href="http://www.sina.com.cn" >新浪</a>
------其他解决方案--------------------
引用:
<a href="http://www.sina.com.cn" >新浪</a>

正解,a标签上如果不加http://或者https://  浏览器会认为你是连接到本站内
想连接到本站外面就得加http前缀