欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js菜單點(diǎn)擊顯示或隱藏效果的簡單實(shí)例

 更新時(shí)間:2014年01月13日 08:50:45   投稿:jingxian  
本篇文章主要是對js菜單點(diǎn)擊顯示或隱藏效果的簡單實(shí)例進(jìn)行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助

復(fù)制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標(biāo)題文檔</title>
<script type="text/javascript">
function Show_Hidden(trid){
    if(trid.style.display=="block"){
        trid.style.display='none';
    }else{
        trid.style.display='block';
    }
}
</script>
</head>
<body>
<a href="#" onclick="Show_Hidden(tr1)">申報(bào)旅游景區(qū)</a>
<table>
<tr id="tr1" style="display:none;">
<td>
旅游景區(qū)質(zhì)量等級評定,是指對具有管理和服務(wù)機(jī)構(gòu)的旅游景區(qū)進(jìn)行評定,對園中園、景中景等內(nèi)部旅游點(diǎn),不進(jìn)行單獨(dú)評定。
</td>
</tr>
</table>

</body>
</html>

相關(guān)文章

最新評論