css中的单选怎么做


本文摘自PHP中文网,作者醉折花枝作酒筹,侵删。

在css中,可以使用radio对象制作单选,只需要在input元素中设置“”样式即可。单选按钮是表示一组互斥选项按钮中的一个;当一个按钮被选中,之前选中的按钮就变为非选中的。

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

一、单选按钮控件语法

1

<input name="Fruit" type="radio" value="" />

使用html input标签,name为自定义,type类型为“radio”的表单,

Radio 对象代表 HTML 表单中的单选按钮。

在 HTML 表单中 <input type="radio"> 每出现一次,一个 Radio 对象就会被创建。

单选按钮是表示一组互斥选项按钮中的一个。当一个按钮被选中,之前选中的按钮就变为非选中的。

当单选按钮被选中或不选中时,该按钮就会触发 onclick 事件句柄。

您可通过遍历表单的 elements[] 数组来访问 Radio 对象,或者通过使用 document.getElementById()。

二、radio单选按钮语法案例

html代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<!DOCTYPE html>

<html lang="en">

  <head>

    <meta charset="UTF-8" />

    <meta http-equiv="X-UA-Compatible" content="IE=edge" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title>Document</title>

  </head>

  <body>

    <form action="" method="get">

      您最喜欢水果?<br /><br />

      <label><input name="Fruit" type="radio" value="" />苹果 </label>

      <label><input name="Fruit" type="radio" value="" />桃子 </label>

      <label><input name="Fruit" type="radio" value="" />香蕉 </label>

      <label><input name="Fruit" type="radio" value="" />梨 </label>

      <label><input name="Fruit" type="radio" value="" />其它 </label>

    </form>

  </body>

</html>

截图

GIF.gif

推荐学习:css视频教程

以上就是css中的单选怎么做的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

css轮廓(outline)是什么

css怎么设置两个字和三个字对齐

利用css完成一个悬停过渡动画的项目(超级简单)

css为什么不能正常加载

css怎么让div垂直居中

css如何实现始终将footer固定在底部

css阴影怎么做

css target怎么用

css sprites如何使用?

css文本域怎么写

更多相关阅读请进入《radio》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...