1根据index.jsp我们先开发注册的功能,当点击注册按钮的时候,超链接到注册页面,下面是一个注册的jsp页面
function changeImage(image){
image.src=image.src+"?time"+new Date().getTime();
}...
分类:
其他好文 时间:
2015-06-27 09:50:58
阅读次数:
389
1.事件绑定,删除,传播,默认方式,获取类型的兼容var eventList = { //添加事件兼容 addEvent:function (event,type,backevent) { if (event.addEventListener...
分类:
编程语言 时间:
2015-06-27 09:37:20
阅读次数:
125
查询之前我们的集合已经创建成功,我们就先来进行第一步操作 —— 查询。查询分很多种类型,如条件查询,过滤查询等等,今天只学习了最基本的find查询。举例:1.find查询: obj.find(查询条件,callback);Model.find({},function(error,docs){//若没...
分类:
其他好文 时间:
2015-06-27 06:21:13
阅读次数:
134
代码如下:$(function(){
$(‘#bbtn‘).click(function(){
$.ajax({
type:‘post‘,
url:‘#‘,
data:{},
success:function(callback){
$(‘#part4‘).empty();
varele="<div>"
ele=ele+"<textareaname=‘order_note‘style=‘height:65px;width:730px;‘>在此处填写备注信息....
分类:
Web程序 时间:
2015-06-27 00:05:52
阅读次数:
137
在body中增加div:<divid="photo-list"></div>在js中写入onload方法(domain,urls)传入图片地址与域名,(图片最少5张,显示4张)functioninitOnloadAction(domain,urls,page_id){varid=function(el){returndocument.getElementById(el);},c=id(‘photo-list‘);//..
分类:
其他好文 时间:
2015-06-27 00:00:26
阅读次数:
327
首先引入文件jquery.js,jquery.form.js,jqueryMultiFile.jsJSP页面中增加:$(document).ready(function(){$(‘#myfile‘).MultiFile({accept:‘jpg|png|bmp|gif‘,max:10,STRING:{remove:‘移除‘,selected:‘已经选择了:$file‘,denied:‘对不起,不支持:$ext!‘,duplicate:‘文件重复:\..
分类:
Web程序 时间:
2015-06-26 23:59:54
阅读次数:
353
http://alxgbsn.co.uk/2011/10/17/enable-css-active-pseudo-styles-in-mobile-safari/document.addEventListener("touchstart", function() {},false); html {....
分类:
Web程序 时间:
2015-06-26 23:44:34
阅读次数:
162
//跨浏览器事件绑定function addEvent(obj,type,fn){//obj目标对象, type事件类型 注意是:"load" ,fn函数回调if (typeof obj.addEventListener !="undefined"){ //W3C方法obj.addEventList...
分类:
编程语言 时间:
2015-06-26 22:26:38
阅读次数:
203
window.onbeforeunload = function() //监控当前页面关闭时触发 { // alert('受理成功!'); window.opener.location.reload(); //刷新父页面 ...
分类:
Web程序 时间:
2015-06-26 19:40:45
阅读次数:
158
建立m文件draw_rectangle.m.其中p生成矩形的个数function draw_rectangle(p)t = 1;x = rand(1)*10;y = rand(1)*10;w = rand(1)*10;h = rand(1)*10;b =[x y w h];rectangle('P....
分类:
其他好文 时间:
2015-06-26 19:31:54
阅读次数:
389