亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

頁面樣式設(shè)計(jì)

1,更改頁面顏色樣式:

<style>
    table{background:#99ffcc;}
    th{font-family:隸書;color:#0099ff;}
    #tr1{background:#00ccff;}
    .td1{color:#009999;}
    a{color:#ff9900;}
</style>

#執(zhí)行如下:

微信圖片_20180313155052.png

#2,更改滑鼠觸碰顯示效果:

echo "<tr id='tr1'onmouseOver='overTr(this)'onmouseOut='outTr(this)'>";echo "<th onmouseOver='overTr(this)'onmouseOut='outTr(this)'>日</th>";
echo "<th onmouseOver='overTh(this)' onmouseOut='outTh(this)'><a href='?convert=$ymd'>{$d}</a></th>";
echo "<tr  onmouseOver='overTr(this)'onmouseOut='outTr(this)'><td colspan='7'align='center'>";
echo "<tr onmouseOver='overTr(this)'onmouseOut='outTr(this)'><td colspan='7' align='center'>";
<script type='text/JavaScript'>
var oriCol=null;function  overTr(obj){
    oriCol=obj.bgColor;obj.bgColor='#0f0';
}
    function outTr(obj){
    obj.bgColor=oriCol;
}
function overTh(obj) 
{    
    oriCol=obj.bgColor;    
    obj.bgColor='red';
}
function outTh(obj){    
    obj.bgColor=oriCol;
}
</script>

運(yùn)行效果如下:

微信圖片_20180313155653.png

## ###
繼續(xù)學(xué)習(xí)
||
<?php echo "頁面樣式設(shè)計(jì)";
提交重置程式碼