点关注不迷路

Max

HTML元素 绑定href属性

给<li>标签绑定href属性

<ul class="honor-list clearfix">

<li style="cursor:pointer;" href="/Front/NewDetail?id=@item.Id">
  <p>这是个链接</p>
</li>

</ul>
    $(document).on('click', '.honor-list li', function () {
        var href = this.getAttribute("href");
        window.location.href = href;
    });

 

posted @ 2017-07-27 16:10  Max麦克斯  阅读(438)  评论(0编辑  收藏  举报