如何在另一个href中设置一个href

时间:2014-02-04 17:47:29

标签: html html5 href markup

我有页面“list.php”,其中我的php脚本显示存储在mysql表中的记录列表,当用户点击记录时应该进入“detail.php”页面并查看所有详细信息

<a class='box' href='detail.php'>
<img src='img.gif' width='60' height='60' alt='' />
<span class='title'>$title</span><br>
<span class='text'>$text</span>
</a>

上面的代码工作,但是我不能在第一个内部添加第二个“a href”,例如:

<a class='box' href='detail.php'>
<img src='img.gif' width='60' height='60' alt='' />
  <a class='right' href='page2.php'>delete</a>
<span class='title'>$title</span><br>
<span class='text'>$text</span>
</a>

所以我尝试使用“div”而不是“a href”,如下所示:

  <div class='box' style='cursor:pointer' onClick='location='detail.php'>
<img src='img.gif' width='60' height='60' alt='' />
  <a class='right' href='page2.php'>delete</a>
<span class='title'>$title</span><br>
<span class='text'>$text</span>
</div>

但是“div”中的“onClick ='location ='page.php'”不起作用,有什么解决方法吗?

1 个答案:

答案 0 :(得分:0)

将嵌套的内容包装在对象标记内。

<a class='box' href='detail.php'>
<img src='img.gif' width='60' height='60' alt='' />
  <object><a class='right' href='page2.php'>delete</a></object>
<span class='title'>$title</span><br>
<span class='text'>$text</span>
</a>