<%@ Page Language=
"C#"
%>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<script runat=
"server"
>
</script>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
<head id=
"Head1"
runat=
"server"
>
<title>WebSurfer's Page - 実験室</title>
<script src=
"Scripts/jquery-1.4.1.js"
type=
"text/javascript"
>
</script>
<script type=
"text/javascript"
>
$(document).ready(function () {
$(
"#DropDownList1"
).change(function () {
var str = $(
"#DropDownList1 option:selected"
).val() +
" "
+
$(
"#DropDownList1 option:selected"
).text();
$(
"#Div1"
).text(str);
});
function listenerForListBox() {
var str =
""
;
$(
"#ListBox1 option:selected"
).each(function () {
str += $(
this
).val() +
" "
+ $(
this
).text() +
" "
;
});
$(
"#Div2"
).text(str);
}
var element = document.getElementById(
"ListBox1"
);
if
(element.addEventListener) {
element.addEventListener(
'change'
,
listenerForListBox,
false
);
}
else
if
(element.attachEvent) {
element.attachEvent(
'onchange'
, listenerForListBox);
}
$(
"#RadioButtonList1"
).click(function () {
var str =
$(
"#RadioButtonList1 input:checked"
).val() +
" "
+
$(
"#RadioButtonList1 input:checked + label"
).text();
$(
"#Div3"
).text(str);
});
$(
"#CheckBoxList1"
).click(function () {
var str =
""
;
$(
"#CheckBoxList1 input:checked"
).each(function () {
str += $(
this
).val() +
" "
+
$(
this
).next().text() +
" "
;
});
$(
"#Div4"
).text(str);
});
});
</script>
</head>
<body>
<form id=
"form1"
runat=
"server"
>
<table style=
"width: 500px;"
>
<tr>
<td style=
"vertical-align: top;"
>
<asp:DropDownList id=
"DropDownList1"
runat=
"server"
>
<asp:ListItem Value=
"00"
Text=
"Red"
/>
<asp:ListItem Value=
"01"
Text=
"Green"
/>
<asp:ListItem Value=
"02"
Text=
"Blue"
/>
</asp:DropDownList>
</td>
<td style=
"vertical-align: top;"
>
<asp:ListBox id=
"ListBox1"
Rows=
"3"
SelectionMode=
"Multiple"
runat=
"server"
>
<asp:ListItem Value=
"10"
Text=
"Red"
/>
<asp:ListItem Value=
"11"
Text=
"Green"
/>
<asp:ListItem Value=
"12"
Text=
"Blue"
/>
</asp:ListBox>
</td>
<td style=
"vertical-align: top;"
>
<asp:RadioButtonList id=
"RadioButtonList1"
runat=
"server"
>
<asp:ListItem Value=
"20"
Text=
"Red"
/>
<asp:ListItem Value=
"21"
Text=
"Green"
/>
<asp:ListItem Value=
"22"
Text=
"Blue"
/>
</asp:RadioButtonList>
</td>
<td style=
"vertical-align: top;"
>
<asp:CheckBoxList id=
"CheckBoxList1"
runat=
"server"
>
<asp:ListItem Value=
"30"
Text=
"Red"
/>
<asp:ListItem Value=
"31"
Text=
"Green"
/>
<asp:ListItem Value=
"32"
Text=
"Blue"
/>
</asp:CheckBoxList>
</td>
</tr>
<tr>
<td style=
"vertical-align: top;"
>
<div id=
"Div1"
></div>
</td>
<td style=
"vertical-align: top;"
>
<div id=
"Div2"
></div>
</td>
<td style=
"vertical-align: top;"
>
<div id=
"Div3"
></div>
</td>
<td style=
"vertical-align: top;"
>
<div id=
"Div4"
></div>
</td>
</tr>
</table>
</form>
</body>
</html>