DIV CSS 佈局教程網

jQuery 使用個人心得
編輯:JQuery特效代碼     
$("標簽名") //取html元素 document.getElementsByTagName("")
$("#ID") //取單個控件document.getElementById("")
$("div #ID") //取某個控件中 控件
$("#ID #ID") // 通過控件ID取其中的控件
$("標簽.class樣式名") //通過class來取控件
$("#ID").val(); //取value值
$("#ID").val(""); //賦值
$("#ID").hide(); //隱藏
$("#ID").show(); //顯示
$("#ID").text(); //相當於取innerHTML
$("#ID").text(""); //相當於innerHTML=""
$("#ID").css("屬性","值") //添加CSS樣式
$("form#表單id").find("#所找控件id").end() //遍歷表單
$("#ID").load("*.html") //載入一個文件
例如:
$("form#frmMain").find("#ne").css("border", "1px solid #0f0").end() // end()返回表單
.find("#chenes").css("border-top","3px dotted #00f").end()

$.ajax({ url: "Result.aspx", //數據請求頁面的url
type:"get", //數據傳遞方式(get或post)
dataType:"html", //期待數據返回的數據格式(例如 "xml", "html", "script",或 "json")
data: "chen=h", //傳遞數據的參數字符串,只適合get方式
timeout:3000, //設置時間延遲請求的時間
success:function(msg)//當請求成功時觸發函數
{
$("#stats").text(msg);
},
error:function(msg) //當請求失敗時觸發的函數
{
$("#stats").text(msg);
}
});
$(document).ready(function(){
$("#description").mouseover(function(){
//ajax方法
$.get( "Result.aspx", //數據請求頁面的url
{ chen: "測試",age:"25"}, //傳遞數據的參數字符串
function(data){ alert("Data Loaded: " + data); } //觸發後的函數
);
});
});
//取得下拉選單的選取值
$(#testSelect option:selected').text(); //取文本值
或$("#testSelect").find('option:selected').text();
或$("#testSelect").val();
SELECT * FROM JOBS a WHERE not EXISTS(SELECT 1 FROM JOBS B WHERE a.job_id<b.job_id and B.MIN_LVL=A.MIN_LVL)
SELECT * FROM JOBS a WHERE EXISTS(SELECT 1 FROM JOBS B WHERE a.job_id<b.job_id and B.MIN_LVL=A.MIN_LVL)
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved