
html
「已注销」
这个作者很懒,什么都没留下…
展开
-
python获取某网址下所有图片
import urllibimport urllib.requestimport redef get_save(url,picname): response=urllib.request.urlopen(url) data=response.read() f=open(picname,'wb')原创 2014-04-30 15:53:15 · 849 阅读 · 0 评论 -
HTML5 video标签使用
.btnStyle1{ margin-top:100px;margin-left:200px;width:100px; height:60px;} .btnStyle2{ margin-top:100px;margin-left:300px;width:100px; height:60px;} .videoStyle{ margin-top:200px;margin-left:600原创 2014-04-29 11:57:24 · 863 阅读 · 0 评论 -
jQuery学习
JQuery学习1. 如何查找带有某一属性的元素$('*[name]'): 获取所有带有name属性的DOM元素,星号代表所有的DOM元素$('input[name]'): 获取所有带有name属性的input2. !import属性添加了!important,则具有最高的优先级,比如 style="width: 10% !important;"则具有该属性的标签的width则是10%3.原创 2015-06-26 10:26:49 · 541 阅读 · 0 评论