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
>
查看全文
相关阅读:
Iterator与 Enumeration
多态性理解
django---路由层
django常用模块汇总
django初识
python常见模块
python PEP8规范
logging模块
mysql一些了解的名词
python 链接 mysql数据库
原文地址:https://www.cnblogs.com/xiaotuni/p/2365812.html
最新文章
Unity3D导出exe窗口参数调整培训
Unity3D游戏开发之伤害数值显示
unity3d游戏开发之简单的透明shader技能培训
Unity3D游戏开发之仿仙剑奇侠传仙灵岛机关的实现
Unity3D游戏开发之在3D场景中选择物体并显示轮廓效果强化版
Unity3D游戏开发之从《魂斗罗》游戏说起(上)——目标追踪
Unity3D游戏开发之ACT游戏三连击效果实现综述
javase复制文件夹
javase解归档文件
javase-字符串次数查找
热门文章
javase整数与字节数组转换+整数转为16进制
javase字符串值修改
javase学习第14天(集合)
javase学习第13天(String字符串)
javase学习第12天(数组排序及元素查找)
javase学习第11天(异常)
javase学习第10天(形式参数和返回值类型、包、内部类、匿名内部类)
违例控制
Java垃圾回收机制
fail-fast机制
Copyright © 2011-2022 走看看