jQuery を使用して、次のように div 内の最後の下枠を削除しています。
$(document).ready(function(){
$("#containerNewBuildings border-bottom:last").css("border-bottom", "none")
});
しかし、何らかの未知の理由で機能していません。コードで何か間違ったことをしましたか?
jQuery を使用して、次のように div 内の最後の下枠を削除しています。
$(document).ready(function(){
$("#containerNewBuildings border-bottom:last").css("border-bottom", "none")
});
しかし、何らかの未知の理由で機能していません。コードで何か間違ったことをしましたか?
セレクターは、CSS 属性ではなく DOM 要素専用です。代わりにこれを行います:
$(document).ready(function(){
$("#containerNewBuildings").css("border-bottom", "none");
});
編集:「はい、しかし、いくつかのメニュー オプションの下にいくつかの下部境界線を使用していますが、それは削除したい最後の境界線です」
答え:
$(".myContainerOfMenuOptions").children().last().css("border-bottom", "none");
最後の #containerNewBuilding だけに境界線を持たないようにしたい場合は、探している
$(document).ready(function(){
$("#containerNewBuildings:last").css("border-bottom", "none");
});
セレクターを変更する
$("#containerNewBuildings border-bottom:last") から $("#containerNewBuildingst") へ