我正在使用jQuery删除div中的最后一个底边框:
$(document).ready(function(){
$("#containerNewBuildings border-bottom:last").css("border-bottom", "none")
});
但由于某些未知原因,它无效。我在代码中做错了吗?
答案 0 :(得分:2)
选择器仅适用于不支持CSS属性的DOM元素。这样做:
$(document).ready(function(){
$("#containerNewBuildings").css("border-bottom", "none");
});
编辑:“是的,但是我在一些菜单选项下面使用了几个底边框,但它只是我要移除的最后一个”
答案:
$(".myContainerOfMenuOptions").children().last().css("border-bottom", "none");
答案 1 :(得分:1)
如果您只想让最后一个#containerNewBuilding没有边框,那么您正在寻找
$(document).ready(function(){
$("#containerNewBuildings:last").css("border-bottom", "none");
});
答案 2 :(得分:0)
修改您的选择器
将$(“#containerNewBuildings border-bottom:last”)形成$(“#containerNewBuildingst”)