2010vs ajax怎么使用啊
发布网友
发布时间:2022-05-15 04:04
我来回答
共3个回答
热心网友
时间:2022-05-15 05:34
AJAX 指异步 JavaScript 及 XML(Asynchronous JavaScript And XML)。
AJAX 是一种在 2005 年由 Google 推广开来的编程模式。
AJAX 不是一种新的编程语言,而是一种使用现有标准的新方法。
通过 AJAX,你可以创建更好、更快以及更友好的 WEB 应用程序。
AJAX 基于 JavaScript 和 HTTP 请求(HTTP requests)。
使用方法如下:
<html>
<head>
<script type="text/javascript">
function showHint(str)
{
var xmlhttp;
if (str.length==0)
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","/ajax/gethint.asp?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<h3>请在下面的输入框中键入字母(A - Z):</h3>
<form action="">
姓氏:<input type="text" id="txt1" onkeyup="showHint(this.value)" />
</form>
<p>建议:<span id="txtHint"></span></p>
</body>
</html>
热心网友
时间:2022-05-15 06:52
正常用啊,先
写好对应的controller
把ajax写在js文件中,
页面引用这个js文件,
然后就ok了。
热心网友
时间:2022-05-15 08:26
2010vs 中ajax通常用以下几种方式:
一是用ScriptManage+UpdatePanel实现;
二是用jquery的$.ajax或$.get,$.post实现,第二种方式的服务器端有多种选择,如一般处理程序(ashx)、WebService、MVC中的Controller等等;
另外,aspx中也能实现异步调用后台(aspx.cs)中的方法。