php是后台语言,一般不用作前台样式的chuli,javascript或者CSS删除ul中最后一个li的border-bottom样式的方法如下:
javascript:obj.style.borderBottom = "none"
jquery:$("ul#test li:last-child").css("border-bottom","none")
css:ul#test li:last-child{border-bottom: none}
jquery和css的方法比较简洁,下面实例演示javascript设置方法:
1、HTML结构
<ul id="test"><li>Glen</li>
<li>Tane</li>
<li>John</li>
<li>Ralph</li>
</ul>
2、javascript代码
window.onload = function(){var li = document.getElementById("test").getElementsByTagName("li")
li[li.length-1].style.borderBottom = "none"
}
3、效果演示