goTOP
May 24, 2015
有時候因為程式 id 呼叫的關係,必須讓 table 的 tags 上不要出現 id 的css 指定,可以利用 col 指定 table內容。

點擊在新視窗中瀏覽此圖片
▲設定前

點擊在新視窗中瀏覽此圖片
▲設定後

head中(/**/ CSS中為註解符號)
<style>
table, th, td {
    border: 1px solid black;
/* width:500px; 寬度也可以加在這裡*/
}
</style>

May 20, 2015
May 3, 2015
點擊在新視窗中瀏覽此圖片

HiNet 測速網站
http://speed.hinet.net/

進入中華電信數據機 (ZyXEL P874)
http://192.168.1.1


一般使用者帳號密碼
user/user

管理者帳號
cht

管理者密碼
北區密碼為chtnvdsl,中區密碼為chtcvdsl,南區密碼為chtsvdsl
April 19, 2015
點擊在新視窗中瀏覽此圖片
Rirakkuma 20th_20450418
讓大家來用數位繪圖板學習畫拉拉熊...
並且利用Windows Illustrator 裡有的字體來製作編排...
April 17, 2015
點擊在新視窗中瀏覽此圖片
無料のイラストやかわいいテンプレート | 素材ライブラリー
http://www.sozai-library.com/

點擊在新視窗中瀏覽此圖片
無料イラスト ・イラスト素材「シルエットAC」
http://www.silhouette-ac.com/
April 12, 2015
點擊在新視窗中瀏覽此圖片
同時秀出價格

點擊在新視窗中瀏覽此圖片
同時秀出價格

CSS (head)
/*隱藏區塊用*/
.box{display: none;}
/*秀出區塊用*/
.bS01{}
.bS02{}
.bS03{}
/*區塊範圍指定*/
.bBW{}


JavaScript (head)
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
        $('input[type="radio"]').click(function(){
            if($(this).attr("value")=="bOne"){
                $(".box").hide();
                $(".bS01").show();
            }
            if($(this).attr("value")=="bTwo"){
                $(".box").hide();
                $(".bS02").show();
            }

        });
    });
</script>

分頁: 53/199 第一頁 上頁 48 49 50 51 52 53 54 55 56 57 下頁 最後頁 [ 顯示模式: 摘要 | 清單 ]