- 浏览: 138105 次
- 性别:
- 来自: 未来
最新评论
-
calosteward:
感谢博主对svg convert to PDF资源的分享。我也 ...
How to Convert a SVG File to PDF Format -
long316:
fhhhh
WinArchiver 2.7 -
long316:
ddddd
WinArchiver 2.7
文章列表
eclipse中的项目无法查看源文件,报错:resource is out of sync with the file system。唯一的问题,在eclipse工程之外的地方修改了源文件但是没有刷新。MyEclipse自带帮助文档:
Don't forget to refresh!
Whenever you use external tools to modify workspace files, you must perform a Refresh from within Eclipse to make the workspace aware of the changes.If you ge ...
package com.shengsiyuan.junit4;
import static org.junit.Assert.assertEquals;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Paramet ...
1. assertThat
2. 使用hamcrest的匹配方法
a) 更自然
3. 示例
a) assertThat( n, allOf( greaterThan(1), lessThan(15) ) );
assertThat( n, anyOf( greaterThan(16), lessThan(8) ) );
assertThat( n, anything() );
assertThat( str, is( "bjsxt" ) );
assertThat( str, not( "bjxxt" ) );
b) assertThat( str, ...
Extjs学习之Extjs验证
wenjianping 2009-12-7
首先要明确,验证的对象是什么呢?是表单,对使用系统的客户的输入进行限定。验证可以使用js提供的脚本来进行代码编写,但ext本身对表单进行了封装,并允许客户对其进行扩展,因此使用Extjs提供的验证能够大大简化验证判断。
1. Extjs错误信息提示方式
本来应该先写验证再写提示,但考虑到提示信息使用的相对简单性,在系统的js公共文件中初始化一次即可,因此将此提前。
在验证之前,先看下面两个语句:
Ext.QuickTips.init();//支持tips提示
Ext.form.Field.prototype.msg ...
参考一:
<!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.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
这是原来的CSS样式
.item{float:left;overflow:hidden;margin-left:8px;margin-top:10px;width: 320px; height:
250px;background-repeat: no-repeat; background-image:url(../images/bgred.jpg)}
.curve{position:relative;width:320px; height:250px; z-index:1; left: 75px; top: -40px;}
动态创建DIV代 ...
obj.appendChild(newe) 将子节点添加父节点的末尾。
obj:要添加的节点的父元素引用;newe:要添加的新节点。
注意:本人发现,在添加子节点的时候不能对其父节点进行引用,如果引用其父节点,就行造成溢出(好像是用这个词 ...
参考一:
function checkDate(){
var startTime=document.getElementById("startTime").value; //获得系统日期的文本值
var endTime=document.getElementById("endTime").value; //获得用户选择的日期文本值
var aStart=startTime.split('-'); //转成成数组,分别为年,月,日,下同
var aEnd=endTime.split('-');
var startDate = a ...
[/size][size=large]function createXmlHttpRequest(){
var xmlhttp = null;
try{
//Firefox, Opera 8.0+, Safari
xmlhttp=new XMLHttpRequest();
}catch(e){//IEIE7.0以下的浏览器以ActiveX组件的方式来创建XMLHttpRequest对象
var MSXML =
['MSXML2.XMLHTTP.6.0','MSXML2.XMLHTTP.5.0',
'MSXML2.XMLHTTP.4.0','MSXML2.XML ...