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
>
查看全文
相关阅读:
随便写写
mysql 快速插入100完毕 40秒
存储过程 插入表数据 循环
打开地图拖动位置获取经纬度 给父窗口传值
Go源码共读计划
源码读起来,Go源码共读计划
清除centos所有命令记录
删除django后台最近一个动作提示。
自动延期pycharm插件,非常好用.
pycharm中使用solidity插件 ,编写solidity以及在pycharm内进行编译。
原文地址:https://www.cnblogs.com/xiaotuni/p/2365812.html
最新文章
题解 P6075 【[JSOI2015]子集选取】
浅谈接口自动化测试
Vue、React和Angular
pip 安装加速
cookie、sessionStoreage、localStorage
CSS选择器
Ajax详细讲解及实例
addEventListener兼容IE8及更早版本
改变水平流向的 direction和竖直流向的writing-mode
Flex布局
热门文章
不完美的谢幕——NOIP 2020退役记
圆锥曲线嵌套的浅薄研究(完整版)
四十四、nginx web 优化一
一、使用自动化运维工具 Ansible 集中化管理服务器 (集成化工具)
Python编程快速上手
Docker容器
python处理execl
MySQL触发器示例
linux下子用户(非root)安装python
linue释放 rm删除后磁盘还没被释放的文件
Copyright © 2011-2022 走看看