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; });