zoukankan
html css js c++ java
ajax笔记 显示出所城市名称 ShowCity.aspx Html代码
<%
...
@ Page Language
=
"
C#
"
AutoEventWireup
=
"
true
"
CodeFile
=
"
ShowCity.aspx.cs
"
Inherits
=
"
Ajax_ShowCity
"
%>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
runat
="server"
>
<
title
>
调用数据库里的数据
</
title
>
<
script
type
="text/javascript"
>
...
function
LoadListItems()
...
{
StartAsyncCall(
null
,
null
);
}
function
OnServerCallComplete(arg, ctx)
...
{
var
idsAndNames
=
arg.split(
"
~
"
);
var
ids
=
idsAndNames[
0
].split(
"
|
"
);
var
names
=
idsAndNames[
1
].split(
"
|
"
);
var
htmlCode;
var
ddl
=
document.getElementById(
"
ddlList
"
);
for
(
var
i
=
0
; i
<
ids.length; i
++
)
...
{
htmlCode
=
document.createElement(
'
option
'
);
ddl.options.add(htmlCode);
htmlCode.text
=
names[i];
htmlCode.value
=
ids[i];
}
//
Enable our drop down list as it
//
should have some values now.
ddl.disabled
=
false
;
}
function
OnServerCallError(err, ctx)
...
{
alert(
"
There was an error processing the request! Error was [
"
+
err
+
"
]
"
);
}
function
OnDropListSelectChanged()
...
{
var
ddl
=
document.getElementById(
"
ddlList
"
);
var
msg
=
document.getElementById(
"
msg
"
);
msg.firstChild.nodeValue
=
ddl.value;
}
</
script
>
</
head
>
<
body
onload
="LoadListItems();"
>
<
form
id
="form1"
runat
="server"
>
<
div
>
<
select
id
="ddlList"
onchange
="OnDropListSelectChanged();"
disabled
="disabled"
>
<
option
>
(加载数据...)
</
option
>
</
select
>
</
div
>
<
hr
/>
<
div
>
<
label
>
选择的Value为:
</
label
><
span
id
="msg"
>
{none}
</
span
>
</
div
>
<
div
>
<
asp:Label
ID
="lblMessage"
runat
="server"
></
asp:Label
>
<
asp:GridView
ID
="GridView1"
runat
="server"
>
</
asp:GridView
>
</
div
>
</
form
>
</
body
>
</
html
>
查看全文
相关阅读:
关于分工协作
SQL分类后每类随机抽取
新浪微群抢票
to learn softwarelist
大厂程序员教你如何学习C++(内附学习资料)
干货|大厂程序员来讲一下互联网公司技术面试的流程以及注意事项
程序员要如何写简历(附简历模板)
laravel项目拉取下来安装,node.js库安装
laravelhas方法查看关联关系
laravel框架少见方法详解
原文地址:https://www.cnblogs.com/xiaotuni/p/2365812.html
最新文章
MongoDB学习笔记2——创建、更新、查询、删除文档
SFIM起航——源于无聊
Android 知识点(Activity,Service,BroadcastReceiver)
Backbone js 结构分析&案例解析
android 之 Task Activity(转载)
转载自http://blog.sina.com.cn/s/blog_551dd6690100nfk4.html,在Web.Config文件中使用configSource
CI/CD探索与实践 (二、Jenkins+Docker Swarm)
Minikube 搭建Kubernetes学习环境
基础篇——数据结构
CI/CD探索与实践 (一 、Gitlab+Kubernetes)
热门文章
编程向个人学习资源汇总
WinPacp在VS2013环境下的配置
Keil C51中,如何优化掉未调用函数
ubuntu中编译openwrt的环境配置
js常用代码
mark20120103
about report
about money
son of bitch,一个ppt改了tm的n个版本
mark20130209
Copyright © 2011-2022 走看看