Try it:
https://jsfiddle.net/L4cbfsnx/1/
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(7)

.pagetitle
{
font-family:標楷體;
font-size:16pt;
font-weight:bolder;
text-align:center;
margin-bottom: 10px;
}
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(13)
單純用 CSS 做選單的開合!
謝謝小狐提供程式碼!
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(3)
如果在 ashx 裡面直接使用 session["acc"].tostring(),
會出現「編譯器錯誤訊息: CS0103: 名稱 'Session' 不存在於目前內容中」,
使用 HttpContext.Current.Session["acc"].tostring(),
則會出現「例外詳細資訊: System.NullReferenceException: 並未將物件參考設定為物件的執行個體」
這個時候需要在 class 名稱後面加上 「 , System.Web.SessionState.IRequiresSessionState」
public class S_0_2014F : IHttpHandler , System.Web.SessionState.IRequiresSessionState
{
//內容
public void ProcessRequest(HttpContext context)
{
string vTmp = context.Session["acc"].ToString();
}
public bool IsReusable {
get {
return false;
}
}
}
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(4)
Javascript 取網址指令
※假設網址為: http://annyhunt.pixnet.net/blog.php?id=1#top
location.href
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(16)
必須 include 以下四支檔案:
1)humanity.datepick.css
2)jquery-1.4.2.min.js
3)jquery.datepick.min.js
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(21)
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(31)
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(64)
剛剛把 IIS 7 裝好,寫了一個簡單的連接DB的程式,結果run起來,發現網頁顯示:
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(6)

本文引用自此 【卜維丰】HTML / CSS / JavaScript - Javascript 滑動目錄 SlideMenu
日前正在製作滑動的menu選單,
參考了這篇文章,並且下載了範例回來做研究,
❤ Saori さおり ❤ 發表在 痞客邦 留言(0) 人氣(29)