上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: jquery选择器关于id选择器 兼容性问题 jQuery#id选择器,根据id属性值选择对应的元素(最多一个元素),将其封装为包含dom元素的jquery对象并返回。 如果包含多个相同的id,则以第一个id为准(HTML规范要求每个DOM元素的id值必须是唯一的)。 如果找不到,则返回空的jQue 阅读全文
posted @ 2017-11-14 13:03 AlisonGavin 阅读(533) 评论(0) 推荐(0) 编辑
摘要: myEclipse中出现Resource is out of sync with the file system.原因: 在工作空间与文件系统不同步, 在myeclipe之外对文件系统文件进行管理修改了。方法:右键工程名, refresh 阅读全文
posted @ 2017-11-14 13:01 AlisonGavin 阅读(372) 评论(0) 推荐(0) 编辑
摘要: Q:myeclipse调试代码的时候看不到变量的值? A: 调试的类的Class文件里没有包含LocalVariableTable属性表, 这是因为在编译时,编译者为了减少文件大小而不把属性表的信息放在Class文件中。 使用命令为javac -g>http://hllvm.group.iteye. 阅读全文
posted @ 2017-11-14 13:01 AlisonGavin 阅读(935) 评论(0) 推荐(0) 编辑
摘要: 修改IE浏览器主页,在注册表中********************HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\MainHKEY_ LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer 阅读全文
posted @ 2017-11-14 12:59 AlisonGavin 阅读(286) 评论(0) 推荐(0) 编辑
摘要: iframe描述: iframe元素会创建包含另一个文档的内联框架,行内框架。<iframe></iframe> 属性:align / left / right / top / middle / bootom frameborder: 1、0.用于规定是否显示周边的边框。height: pixels 阅读全文
posted @ 2017-11-14 12:58 AlisonGavin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: html标签元素分类1. 块状元素2. 内联元素/行内元素3. 内联块状元素/行内块状元素 常用的块状元素:<div> <p> <h1>.....<h6> <ol> <ul> <dl> <table> <address> <blockquote> <form> 常用的行内元素:<a> <span> 阅读全文
posted @ 2017-11-14 10:29 AlisonGavin 阅读(253) 评论(0) 推荐(0) 编辑
摘要: css_class选择器 可以为多个 <div class="alert alert-info">就是指定多个class的意思,在HTML的层面上说的话,这样指定的class是同级的。同级的class需要看CSS文件的先后次序,后加载的css会覆盖前面加载的css。写到style的话因为是最后解析的 阅读全文
posted @ 2017-11-14 10:20 AlisonGavin 阅读(311) 评论(0) 推荐(0) 编辑
摘要: iframe中width与height的问题iframe是页内标签,其width与height可以取值为100%100%是受父边框的影响,100%相对于父边框 阅读全文
posted @ 2017-11-10 09:29 AlisonGavin 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 范围: %cd%:批处理脚本(bat脚本)、命令行窗口 %~dp0:批处理脚本(bat脚本) bat脚本执行时,两者代表的值是否会变化: %cd%:会。因为代表的是当前目录 %~dp0:不会。因为代表的是脚本文件在磁盘的位置 bat延迟变量 样例 setlocal EnableDelayedExpa 阅读全文
posted @ 2017-11-08 09:01 AlisonGavin 阅读(1376) 评论(0) 推荐(0) 编辑
摘要: java测试程序运行时间: Java的延时: 阅读全文
posted @ 2017-11-07 11:21 AlisonGavin 阅读(8219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页