<!--Jquery代码--> $(':checkbox').click(function() { var $this = $(this); if ($this.parent().hasClass('radio')) { var checkboxs = $this.parent().children
分类:
其他好文 时间:
2016-03-09 17:40:27
阅读次数:
133
[javascript] view plain copy <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
分类:
Web程序 时间:
2016-03-08 14:55:52
阅读次数:
158
第一章:html 本章主干知识点: 1、最基本的html文件的格式是什么? 2、常用标签:font、列表(ul、ol、li)、img 3、表格标签:table、tr、td;表格的合并。 4、超链接、新窗口中打开的超链接、超链接锚点。 5、框架:frameset 6、表单:input(文本、radio
分类:
Web程序 时间:
2016-03-06 17:34:51
阅读次数:
178
手机和电脑,在电脑上开3个命令窗口,分别输入如下3个命令分别抓取mainLog、radioLog和kernalLog adb logcat -v time >main.txt adb logcat -v time -b radio >radio.txt adb shell cat proc/kmsg
分类:
移动开发 时间:
2016-03-03 14:52:04
阅读次数:
165
jquery取radio单选按钮的值 $("input[name='items']:checked").val(); 另:判断radio是否选中并取得选中的值 如下所示: function checkradio(){ var item = $(":radio:checked"); var len=i
分类:
Web程序 时间:
2016-02-23 20:54:36
阅读次数:
446
<!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.o
分类:
Web程序 时间:
2016-02-23 19:00:14
阅读次数:
166
Safari 上的默认样式是这样的, 背景颜色可以使用background-color改变,但中间那个点始终无法去掉。 我查了一些jQuery插件,如iCheck.js,但是那说明写得我都看不明白,根本不知道如何使用。 还有-webkit-appearance:none;属性会直接将input[ty
分类:
移动开发 时间:
2016-02-22 10:19:40
阅读次数:
227
项目名称:MusicRadio 描写:一个基于酷狗电台API制作的APP(http://topic.kugou.com/radio/),功能基本满足需要,唯一不足就是暂不能后台播放 UI布局:采用了AutoLawyou 和SizeClass 浏览 不足之处希望能指导出来,大家共同进步。 详细源码见:
分类:
其他好文 时间:
2016-02-21 01:25:13
阅读次数:
281
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> <form> <input type="radio" name="sex" value="man">男</br><!--单
分类:
其他好文 时间:
2016-02-20 14:41:28
阅读次数:
158
1、设置某项单选input为选中状态: $("input[type='radio']").eq(1).attr('checked',true); ②也可设其属性checked为'checked',设置完后原选中项会自动取消选中 $("input[type='radio']").eq(1).attr(
分类:
Web程序 时间:
2016-02-16 18:20:26
阅读次数:
261