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
>
查看全文
相关阅读:
Tomcat启动startup.bat闪退和JRE_HOME错误
页面布局:一侧固定宽度,一侧自适应
iOS-数据持久化-CoreData
iOS-数据持久化-SQlite3
iOS-数据持久化-偏好设置
iOS-数据持久化-对象归档
iOS-数据持久化-属性列表
iOS-数据持久化基础-沙盒机制
iOS-数据持久化详细介绍
iOS-网络处理框架AFN
原文地址:https://www.cnblogs.com/xiaotuni/p/2365812.html
最新文章
关于 复制文本 然后Ctrl+V 操作的这个功能 貌似jq也没有封装。。。
JQ判断按钮,复选框是否选中
JQ 如何设置单选按钮问题
mybatis 自定义 拦截器
VsCode 快捷键
mybatis 对应实体类 注意
git dirty workspace tree 错误
maven 发布到 本地仓库
springMvc 406错误
JS string 转 json
热门文章
easyui datagrid 使用
easyui datatimebox 使用。。。
js 循环匹配 所有匹配项
JavaScript中getBoundingClientRect()方法详解
better-scroll插件
破解idea
Vue项目之背景图片打包后路径错误
npm 常用命令
Highcharts 使用
vue系列之获取多选框中被选中的值
Copyright © 2011-2022 走看看