jquery を使用して 1 つの td の css を変更したいと考えています。これについて助けてください。これは私には機能しません $("#tdTopMenu").css({ "backgroundColor": "black", "color": "white" });
aspx コード:
<table border="0" cellspacing="0" width="100%">
<tr>
<td id = "tdTopMenu" runat = "server" style="width: 100%" class="hideColumn">
<asp:Literal ID="Literal1" runat="server"></asp:Literal>
</td>
</tr>
</table>
Jクエリコード:
<script type="text/javascript">
$(document).ready(function () {
$("#jMenu").jMenu({
ulWidth: '150',
effects: {
effectSpeedOpen: 300,
effectTypeClose: 'slide'
},
animatedText: false
});
$("#tdTopMenu").css({ "backgroundColor": "black", "color": "white" });
});
</script>