代碼如下(xià):
<script type="text/javascript">
$(function(){
var select=$("select[name=type]").val();
alert(select);
if(select==1 || select==3){
$("tr[id=show]").show();
}else{
$("tr[id=show]").hide();
}
$("select[name=type]").change(function(){
var value=$(this).val();
if(value==1 || value==3){
$("tr[id=show]").show();
}else{
$("tr[id=show]").hide();
}
});
});
</script>
<tr>
<td>目錄選擇:</td>
<td>
<elect name="type" id="selId" >
<option value="1">蕪湖網站建設</option>
<option value="2">上海網頁設計</option>
</elect>
</td>
</tr>
<tr id="show" style="display:none;">
<td>上海網頁設計</td>
</tr>