- 浏览: 3555300 次
- 性别:
- 来自: 杭州
最新评论
-
cning_cn:
守护线程的方式是在 线程对象创建 之前 用线程对象的setDa ...
Thread.setDaemon设置说明 -
qq250782929:
[b][/b]
推荐两款富文本编辑器:NicEdit和Kindeditor -
vickypig:
js循环判断有错误。第一次批量加了几个,后面在单独加几个,有可 ...
新鲜出炉:基于HTML5的jquery文件上传插件(多文件选择、带进度条、完整可用) -
黑山老鹞:
...
如何用Java操作MongoDB? -
山川尽美:
FileChannel inChannel = new Fil ...
JAVA功能代码《12》----使用NIO快速复制文件
文章列表
基本选择器#myid 匹配一个Idelement 匹配所有的elemnet元素.myclass 匹配所有的类* 匹配所有元素selector1,selector2,selectorN 匹配满足选择器的所有元素层次选择器elementParent elementChild 匹配elementParent下所有的子元素。elementParent>elementChild ...
- 2013-06-13 18:19
- 浏览 982
- 评论(0)
js属于初学,代码还很简陋,大家见笑了。现在是越学习js,越是感到js的强大!需求、目的:1、在前台网页,使用js自动创建表单2、可以控制表单里的控件类型,比如文本框、下拉列表框、在线编辑器等。3、可以获取用户输入的数据,可以进行验证4、可以进行排版5、修改数据时,可以把原有数据绑定到表单。实现方式:1、js+json+第三方js脚本、控件2、json对表单进行描述,比如标题、控件类型、控件大小、下拉列表框的item如何填充等。3、第三方脚本实现复杂功能,比如选择日期、在线编辑、数据验证等。4、Js脚本根据json的描述,创建表单(table形式),创建表单里面的控件(比如文本框),然后对表单和 ...
- 2013-06-13 18:19
- 浏览 666
- 评论(0)
1.CSSResets网络上关于CSS重置的代码非常多。本段代码是根据EricMeyer’sresetcodes进行改编的,里面包含一点响应式图片和所有核心元素的边界框设置,这样就可以保持页边距和填充可以很好地对齐。html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center, ...
- 2013-06-13 18:19
- 浏览 985
- 评论(0)
1,总是从ID选择器开始继承在jQuery中最快的选择器是ID选择器,因为它直接来自于JavaScript的getElementById()方法。例如有一段HTML代码:<divid="content"><formmethod="post"action="#"><h2>交通信号灯</h2><ulid="traffic_light"><li><inputtype="radio"class="on"nam ...
- 2013-06-13 18:19
- 浏览 701
- 评论(0)
1、当条件成立时执行a方法,当条件失败是执行b方法通常我们会这样写:varresult;if(isOk){result=funA();}else{result=funB();}还可以这样表达:varresult=isOk?funA():funB()2、当条件成立执某个方法通常方式:if(isOk){doSomething();}我更喜欢这样写:isOk&&doSomething();如果一个变量没定义或没有值则给它一默认值str=str||"ok";arr=arr||[];上面的方式可行,是因为在js逻辑运算中,返回值不一定是true或false,也可以是其他 ...
- 2013-06-13 18:19
- 浏览 620
- 评论(0)
-webkit 是在Chrome浏览器中用的 一般是指 浏览器是webkit核心0 0 5px rgba(40, 173, 243, 0.5); -webkit /*Chrome/Safari*/-moz /*Firefox*/-ms /*IE*/-o /*Opera*/box-shadow的四个参数x-offset x 轴偏移 0 y-offset y轴偏移 0blur 模糊值 5px color of shadow 阴影颜色 rgba(40, 173, 243, 0.5); RGB是说 ...
- 2013-06-13 18:19
- 浏览 1260
- 评论(0)
<html> <head> <script src='js/jquery-1.5.1.js'></script> <script src='js/jquery.Jcrop.js'></script> <style type="text/css"> body{ background-color:#ccc; } .jcrop-holder { text-align: left; } .jcr ...
- 2013-06-13 18:19
- 浏览 823
- 评论(0)
allowSelect
true
允许新选框
allowMove
true
允许选框移动
allowResize
true
允许选框缩放
trackDocument
true
baseClass
"jcrop"
基础样式名前缀。说明:class="jcrop-holder",更改的只是其中的 jcrop。
addClass
null
添加样式会。例 ...
- 2013-06-13 18:19
- 浏览 662
- 评论(0)
当鼠标移动到小图时自动显示出大图 ,当鼠标点击top图片时,大图自动显示上一个图片
,当鼠标点击bottom时,大图自动显示下一个图片<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312"/>
<title>纵向JS相册效果</title>
<style type="text/css">
body{
background:#0000 ...
- 2013-06-13 18:19
- 浏览 784
- 评论(0)
click()对象.click()使对象被点击。closed对象.closed对象窗口是否已关闭true/falseclearTimeout(对象)清除已设置的setTimeout对象clearInterval(对象)清除已设置的setInterval对象confirm("提示信息")弹出确认框,确定返回true取消返回false
- 2013-06-13 18:19
- 浏览 634
- 评论(0)
<?php $conn=mysql_connect("localhost","root","root");
mysql_select_db("db",$conn);
mysql_query("set names gb2312");?>
<wbr></wbr>
- 2013-06-13 18:19
- 浏览 786
- 评论(0)
Array.prototype.deleteElement=function(){
var o={},newArr=[],i,j,arr;
for(i=0;i<this.length;i++){
arr=this[i]
if(typeof(o[arr])=="undefined"){
newArr[newArr.length]=arr;
o[arr]=1;
}
}
return newArr;
}<wbr></wbr>
下面是别人的写法Array.prototype.delRepeat=function(){ ...
- 2013-06-13 18:19
- 浏览 720
- 评论(0)
简单的选择器$ function $(e){ return document.getElementById(e); }
简单的类选择器 document.getElementsByClassName=function(cl){ var retnode=[]; var myclass=new RegExp('\\b'+cl+'\\b'); var myclass=this.getElementsByTagName('*'); for(var i=0;i<elem.length;i++){ var classes=elem[i].className; if ...
- 2013-06-13 18:19
- 浏览 614
- 评论(0)
<html> <head> <style type='text/css'>.wen p{ text-align:left; margin:15px 0 0 5px; }</style><script type='text/javascript'> var xx=0,yy=0; function movea(v){ xx=event.x-v.offsetLeft;yy=event.y-v.offsetTop;} function moveb(v){ v.style.left=event.x-xx;v.style.top=event.y- ...
- 2013-06-13 18:19
- 浏览 820
- 评论(0)
x:设置或者是得到鼠标相对于目标事件的父元素的外边界在x坐标上的位置。clientX:相对于客户区域的x坐标位置,不包括滚动条,就是正文区域。offsetx:设置或者是得到鼠标相对于目标事件的父元素的内边界在x坐标上的位置。screenX:相对于用户屏幕 <table border=1 cellpadding=15 cellspacing=15 style="position:relative;left:100;top:100"><tr><td><div onclick="show()" style="b ...
- 2013-06-13 18:19
- 浏览 740
- 评论(0)