zoukankan
html css js c++ java
checkbox js
<
html
>
<
head
>
<
meta
http-equiv
="Content-Type"
content
="text/html; charset=gb2312"
>
<
title
>
Untitled Document
</
title
>
</
head
>
<
body
>
<
script
language
="javascript"
type
="text/javascript"
>
function
adjust(str,obj)
{
document.getElementById(str).style.display
=
obj.checked
?
"
block
"
:
"
none
"
;
}
</
script
>
<
table
width
="500"
border
="1"
>
<
tr
>
<
td
><
input
type
="checkbox"
name
="checkbox3"
value
="checkbox"
>
忙时优惠包
<
input
type
="checkbox"
name
="checkbox"
value
="checkbox"
onClick
="adjust('line1',this)"
>
长途优惠包
<
input
type
="checkbox"
name
="checkbox2"
value
="checkbox"
onClick
="adjust('line2',this)"
>
短信优惠包
</
td
>
</
tr
>
<
tr
>
<
td
id
="line1"
style
="display:none"
><
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
3
<
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
5
<
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
10
</
td
>
</
tr
>
<
tr
>
<
td
id
="line2"
style
="display:none"
><
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
3
<
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
6
<
input
name
="radiobutton"
type
="radio"
value
="radiobutton"
>
10
</
td
>
</
tr
>
</
table
>
</
body
>
</
html
>
查看全文
相关阅读:
WebSocket客户端连接不上和掉线的问题以及解决方案
中国(China): 上海地图和经维度
在程序开发中怎样写SQL语句可以提高数据库的性能
C# 正则表达式
asp.net mvc 2.0 【1】
c#获取相对路径的八种方法
ASP.NET 常用对象
Python自动化开发基础和数据类型
Python自动化开发数据类型之集合
Python自动化开发数据类型之字符串
原文地址:https://www.cnblogs.com/simhare/p/926014.html
最新文章
C语言博客作业00
10个非常有用的CSS技巧
Struts 2读书笔记Struts 2知识总结
JAVA虚拟机的生命周期
49个jQuery代码经典片段
java编程思想阅读笔记
hibernate的查询方法以及返回的值类型
css命名规则
输入限制,例如:汉字 英文字母 数字 下划线组成,320位
代码注释风格
热门文章
读取配置文件的方法
CDOJ 204 合并石子
CDOJ 024 8球胜负(eight)
2014 UESTC Training for Data Structures A Islands
CDOJ 30 最短路
CDOJ 26 遮挡判断(shadow)
CDOJ 25 点球大战(penalty)
CDOJ 28 补兵(kill)
2014 UESTC Training for Data Structures B 母仪天下
客户端连接WebSocket服务器时连接失败会出现的一些问题及解决方案
Copyright © 2011-2022 走看看