DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery調用WebService的實現代碼
jQuery調用WebService的實現代碼
編輯:JQuery特效代碼     
一個例子說盡:
1、.aspx中:
代碼如下:
<div class="button" id="btn1"><a href="#">HelloWorld</div>
<div class="button" id="btn2"><a href="#">傳入參數</a></div>
<div class="button" id="btn3"><a href="#">返回集合</a></div>
<div class="button" id="btn4"><a href="#">返回復合類型</a></div>
<div class="button" id="btn5"><a href="#">返回DataSet(XML)</a></div>
</div><div id="loading">服務器處理中,請稍後</div>
<div id="dictionary"></div>

2、WebService中:
代碼如下:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
//若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消對下行的注釋。
[System.Web.Script.Services.ScriptService] //如果要用jquery調用WebService則取消前面的注釋
public class WebService : System.Web.Services.WebService
{
public WebService()
{
//如果使用設計的組件,請取消注釋以下行
//InitializeComponent();
}
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
[WebMethod]
public string GetWish(string value1, string value2, string value3, int value4)
{
return string.Format("祝您在{3}年裡 {0}、{1}、{2}", value1, value2, value3, value4);
}
[WebMethod]
public List<int> GetArray(int i)
{
List<int> list = new List<int>();
while (i >= 0)
{
list.Add(i--);
}
return list;
}
[WebMethod]
public Class1 GetClass()
{
Class1 a = new Class1();
a.ID = "1";
a.Value = "牛年大吉";
return a;
}
[WebMethod]
public DataSet GetDataSet()
{
DataSet ds = new DataSet();
DataTable dt = new DataTable("Table1");
dt.Columns.Add("ID", Type.GetType("System.String"));
dt.Columns.Add("Value", Type.GetType("System.String"));
DataRow dr = dt.NewRow();
dr["ID"] = "1";
dr["Value"] = "新年快樂";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr["ID"] = "2";
dr["Value"] = "萬事如意";
dt.Rows.Add(dr);
ds.Tables.Add(dt);
return ds;
}
}
//自定義的類,只有兩個屬性
public class Class1
{
public string ID { get; set; }
public string Value { get; set; }
}

3、JS中:
代碼如下:
<script language="javascript" type="text/javascript">
//無參數
$(function() {
$("#btn1").click(function() {
$.ajax({
type: "POST", //訪問webservice使用POST方式請求
contentType: "application/json;utf-8", //WebService會返回Json類型
url: "WebService.asmx/HelloWorld", //調用WebService方法
data: "{}", //要傳遞的參數,沒有傳參時,也一定要寫上
dataType: "json",
success: function(result) {
result =result.d;//返回d後面的json內容
$("#dictionary").append(result);
}
});
});
});
//有參數
$(function() {
$("#btn2").click(function() {
$.ajax({
type: "POST",
contentType: "application/json;utf-8",
url: "WebService.asmx/GetWish",
data: "{value1:'萬事如意',value2:'心想事成',value3:'財運滾滾',value4:2009}",
dataType: "json",
success: function(result) {
result =result.d;
$("#dictionary").html(result);
}
});
});
});
//返回集合
$(function() {
$("#btn3").click(function() {
$.ajax({
type: "POST",
contentType: "application/json;utf-8",
url: "WebService.asmx/GetArray",
data: "{i:10}",
dataType: "json",
success: function(result) {
result =result.d;
$(result).each(function() {
$("#dictionary").append(this.toString() + " ");
});
}
});
});
});
//返回實體
$(function() {
$("#btn4").click(function() {
$.ajax({
type: "POST",
contentType: "application/json;utf-8",
url: "WebService.asmx/GetClass",
data: "{}",
dataType: 'json',
success: function(result) {
result =result.d;
$("#dictionary").append(result.ID + " " + result.Value);
}
});
});
});
//返回DataSet(XML)
$(document).ready(function() {
$('#btn5').click(function() {
$.ajax({
type: "POST",
url: "WebService.asmx/GetDataSet",
data: "{}",
dataType: 'xml', //返回的類型為XML ,和前面的Json,不一樣了
success: function(result) {
//演示一下捕獲
try {
$(result).find("Table1").each(function() {
$('#dictionary').append($(this).find("ID").text() + " " + $(this).find("Value").text());
});
}
catch (e) {
alert(e); return;
}
},
error: function(result, status) { //如果沒有上面的捕獲出錯會執行這裡的回調函數
if (status == 'error') {
alert(status);
}
}
});
});
});
//Ajax 為用戶提供反饋,利用ajaxStart和ajaxStop 方法,演示ajax跟蹤相關事件的回調,他們兩個方法可以添加給jQuery對象在Ajax前後回調 //但對與Ajax的監控,本身是全局性的
$(document).ready(function() {
$('#loading').ajaxStart(function() {
$(this).show();
}).ajaxStop(function() {
$(this).hide();
});
});
// 鼠標移入移出效果,多個元素的時候,可以使用“,”隔開
$(document).ready(function() {
$('div.button').hover(function() {
$(this).addClass('hover');
}, function() {
$(this).removeClass('hover');
});
});
</script>

4、效果
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved