jQueryを使用していくつかのIDを非表示にしたい。 なぜ私のhtmlコードは
<table>
<tr id="incomplete"></tr>
<tr id="complete"></tr>
<tr id="incomplete"></tr>
<tr id="incomplete"></tr>
<tr id="complete"></tr>
</table>
あるとjQueryコードが
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#button-entryc").click(function() {
jQuery("#incomplete").css("display","none");
jQuery("#complete").css("display","table-row");
});
jQuery("#button-entryi").click(function() {
jQuery("#incomplete").css("display","table-row");
jQuery("#complete").css("display","none");
});
});
</script>
ですが、それはIDのみで(最初に見つかったID)のために働きますか?
は
はい、それはクラスでなければなりません – Liam
OMGの私を新しいので、これを知らない、ありがとう –