<td><a href="javascript:;"onclick="r1(this);" >删除</a></td>中href并无网址跳转需求,出现的意义是?

来源:9-22 编程练习

WingFrank

2016-04-21 18:57

<body> 

  <table border="1" width="50%" id="table">

  <tr>

<th>学号</th>

<th>姓名</th>

<th>操作</th>

  </tr>  


  <tr>

<td>xh001</td>

<td>王小明</td>

<td><a href="javascript:;" onclick="r1(this);">删除</a></td>   <!--在删除按钮上添加点击事件  -->

  </tr>


  <tr>

<td>xh002</td>

<td>刘小芳</td>

<td><a href="javascript:;"onclick="r1(this);" >删除</a></td>   <!--在删除按钮上添加点击事件  -->

  </tr>  

  </table>

  <input type="button" value="添加一行"  />   <!--在添加按钮上添加点击事件  -->

 </body>

中<a>标签内href属性此处的意义是什么?并没有网址链接需求,可以删除吗?为何href="javascript:;"改为任意的内容如href="sdgs"执行函数后会跳转到主页?


写回答 关注

1回答

  • 抢不到的故事
    2016-04-21 21:06:24

    href='javascript:' 主要是说明a标签需要执行一段js代码,并不需要跳转

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题