- 浏览: 28332 次
- 性别:
- 来自: 北京
最新评论
-
lzefforts:
argont 写道不是早就应该使用getFullYear()了 ...
兼容firefox以及chrome的js时间获得 -
argont:
不是早就应该使用getFullYear()了吗?
兼容firefox以及chrome的js时间获得
文章列表
此文章转载自:http://blog.csdn.net/yzsind/archive/2011/01/29/6168854.aspx
2010年初写过一篇博客(我们是一群和平年代充满浮躁与抱怨的程序员),一年过去了,社会好像更浮躁,也有网友问我这方面的问题,于是有了下面这篇文章,再次 ...
若干句有意思的话
- 博客分类:
- Before 2015.6.15
1、 一个人,如果你不逼自己一把,你根本不知道自己有多优秀。
2、 赚钱是一种能力,花钱是一种水平,能力可以练,水平是轻易练不出来的。
3、年轻人不可以太狂。
4、一个人的知识,通过学习可以得到;一个人的成长,必须通过磨练。
5、这个世界上好书很多,可以改变命运的书很少。
6、这个世界上朋友很多,可以用一生托付的朋友很少。
7、如果发现一个人,一个地方,一件事,一本书,可以改变你的命运。一定要想办法跟他发生关系,否则,他就跟你没关系。
8、当一个人没有成功的时候,装也装出成功的样子。(因为装的时候,他已经成为你性格的一部分)
9、我们学习的目的,是为了使 ...
职场少走弯路的十条忠告
1。 买个闹钟,以便按时叫醒你。贪睡和不守时都将成为你工作和事业上的绊脚石。不仅要学会准时,更要学会提前。“闹钟”只是一种简单的标志和提示,真正灵活、实用的时间,掌握在每个人心中 ...
create or replace procedure table2xml is
cursor person_cur is select * from human;
person_data human%rowtype;
doc xmldom.DOMDocument;
main_node xmldom.DOMNode;
root_node xmldom.DOMNode;
item_node xmldom.DOMNode;
person_node xmldom.DOMNode;
root_elem xmldom.DOMElement ...
var now = new Date();
var initYear = now.getYear();
以上代码在IE中initYear是对的,但是ff以及chrome下不兼容,换成
var initYear = now.getFullYear();,
IE、FireFox、Chrome下均可行
RT所说,easyui的combobox相当于是重画了一个select,这样也就解决了使用普通的select在IE6下的显示问题。
html代码如下:
<select id="statUnit" class="easyui-combobox" name="dept" name="statUnit" style="width:153px;"></select>
js代码:
$('#statUnit').combobox({
url:" ...
<html>
<head>
<script type="text/javascript">
var flag=0;//0表示图片移动,1表示点击后图片不移动
function doit(){
if(flag==0){
var obj = document.getElementById("tampon");
obj.style.left = event.x-20;
obj.style.top = event.y-20;
...
项目中需要在treegrid中显示的内容上,鼠标移到这个内容处,用一个提示信息的方式显示,如图所示,实现此功能,只需要在jquery.easyui.min.js文件中在方法
function _546(row,_547,_548,_549)中添加一句
_54a.push("title=\""+row[_54b]+"\"");/*add title tips*/。
以下代码是此treegrid。
row中存放的是返回到前台的所有信息,,_54的值是columns中的field。
$('#taskInfo').treegrid({
t ...
js中字符串的比较用的是"==",而不是equals
js中string类型变量转换为int类型变量,var test='ssss';var num =parseInt(test);
js中int类型转换成string类型,var n=112; var t=n.toString();
刷新页面
- 博客分类:
- Before 2015.6.15
页面的几种刷新方式:
1.window.location.reload();
2.window.location.href =window.location.href;window.location.href.reload();
注:1和2只能刷新本页面,不能刷新父页面。
3.parent.location.reload();
4.parent.window.location.reload();
5.top.document.location.reload();
注;3、4、5能刷新父页面和子页面,可以用来 子页面刷新父页面。
另外还有刷新页面时,弹出“重试”对话框,一般都是由于POST的 ...
colspan属性可以实现HTML表格中一行跨越多列
<table border="1">
<tr>
<th>www.dreamdu.com</th>
<th>.com域名的数量</th>
<th>.cn域名的数量</th>
<th>.net域名的数量</th>
</tr>
...
string和int之间的转换
a1=Integer.parseInt(s1);
s1=Integer.toString(a1);
设置当前的日期格式
Date now=new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// 设置日期格式
String taskQueryDate = df.format(now);
insert into lhsys.totaskmanagerecord a values (2,'公告管理','添加公告管理',347,to_date('2010-10-10','yyyy-mm-dd'),to_date('2010-10-15','yyyy-mm-dd'),347,6,'中',100,'',to_date('2010-10-10','yyyy-mm-dd'),0);
往数据库表中插入date类型的数据,要用to_date('2010-10-10 16:40:06','yyyy-mm-dd HH24:MI:SS:FF3');
然后对date类型进行模糊查询:
to_char ...