table
怎么在table里点击tr连接到其它页面,求详细代码
怎么在table里点击tr连接到其它页面,求详细代码
2015-10-20
你可以在tr中添加一个a(超链接)标签,设置href属性(你想要的网址的地址)
你也可以把table放在一个form内设置action(我认为表单一般用来提交数据)
<!--方式1--><table>
<td>
<tr><a href="http://www.caibi-y.com">我爱慕课网</a></tr>
</td>
</table>
<br>
<!--方式2--><form action="http://www.caibi-y.com" method="post">
<table>
<td>
<tr><input type="submit"vale="希望你也如此"></tr>
</td>
</table>
</form>
举报