- 浏览: 421064 次
- 性别:
- 来自: 广州
最新评论
-
jxausea:
java.io.IOException: Keystore w ...
一个opoenfire与smack的例子 -
517913840:
请问 为什么我用roster.getPresence取用户的在 ...
一个opoenfire与smack的例子 -
cymmint:
请了,大哥
轻松利用JQuery实现ajax跨域访问 -
lishujuncat:
多谢,学下了
一个opoenfire与smack的例子 -
InSoNia:
不错
最简单的ajax例子
文章列表
document.oncontextmenu=function(e){return false;}
document.onkeydown = function(evt)
{
evt = evt ? evt : (window.event ? window.event : null);
//屏蔽F1-5
if (typeof window.ActiveXObject != 'undefined') { // 支持IE浏览器
if(event.keyCode>=112 && event.keyCode<=116) {
...
- 2008-08-05 09:00
- 浏览 1135
- 评论(0)
var d1=new Date(2008,7,10,8,0,0);
var d2=new Date(2008,8,11,12,0,0);
alert((d2.getTime()-d1.getTime())/1000/3600);
//注意new Date()中的六个参数分别是 年月日时分秒 其中月份从0开始,
var testTime=d2.getTime()-d1.getTime() //得到毫秒差,换算成小时就可以了
setTimeout("test()", testTime);// 过多少时间就执行t ...
- 2008-07-31 14:38
- 浏览 1934
- 评论(0)
window.open() 传参问题:
父页面中:
window.open('url', '', 'resizable=1, menuBar=0, toolBar=0, scrollbars=yes, Status=yes, resizable=1');
url页面拿父页面的xx元素赋值
opener.document.getElementById("xx").value="newValue";
if(window.opener){//判断是否有父窗口,即打开本页面的窗口
window.opener.location.reload();//刷 ...
- 2008-06-30 11:25
- 浏览 37613
- 评论(0)
function test(){
var perid = document.thisForm.PerID.value;
var xml="test";
if(window.ActiveXObject){
var xml=new ActiveXObject("Microsoft.XMLDOM");
xml.async=false;
xml.load("xxxx.xml");
}else if((typeof document. ...
- 2008-06-30 09:27
- 浏览 5486
- 评论(0)
注意的一些问题:
(一)尽量使用javascript/DOM标准
(二)标准有时也不能跨浏览器
1)要面对跨浏览器的时候经常会遇到一些ie特有的函数?
可以这样解决:
做一个判断把ie和firefox的javascript代码分开写
if (typeof window.ActiveXObject != 'undefined') { // 支持IE浏览器
//do some thing here
}
else if((typeof document.implementation != 'undefined')&&(typeof document.implemen ...
- 2008-06-17 10:15
- 浏览 2369
- 评论(0)
function(evt){
evt = evt ? evt : (window.event ? window.event : null);
//获得触发该事件的元素
var elem = evt.srcElement ? evt.srcElement : evt.target;
//判断事件元素是否是 document.getElementById("idOfInputElement")
if(!(!document.getElementById(idOfInputElement))){//如果理解documen ...
- 2008-06-17 09:27
- 浏览 3383
- 评论(0)
------------------------------------------------
window.event跨浏览器问题的解决方法
------------------------------------------------
如果遇到 window.event时在函数中就要特别处理:
e.g.
页面中: <input type="button" value="test" onclick="javasctipt:testOnclick(event)">
javasctipt中的代码
function t ...
- 2008-06-04 18:07
- 浏览 3131
- 评论(0)
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Content-Type" cont ...
- 2008-05-21 16:24
- 浏览 7580
- 评论(0)
我这里是循环一个月的数据
<!--days是每个月的天数-->
<xsl:variable name="days">
<xsl:value-of select="/root/row[1]/@days" />
</xsl:variable>
<xsl:call-template name="loop">
<xsl:with-param name="i" select="1" />
<xsl:w ...
- 2008-05-06 09:33
- 浏览 2660
- 评论(0)
<!--STATUS OK-->
<html><head><meta http-equiv=content-type content="text/html; charset=gb2312"><title>CSS颜色代码大全_梦网设计室</title>
<style>.error{color:#FF0000;font-size:12px}</style>
<script language="javascript" src="/js/popup ...
- 2008-03-31 11:25
- 浏览 2242
- 评论(0)
转自:http://hi.baidu.com/jakoes/blog/item/4dcc30ec29c7fbd22f2e2183.html
关键字: DWR DWR util.js 学习笔记
/********************/
/********************/
util.js包含一些有用的函数function,用于在客户端页面调用.
主要功能如下:
代码
1. 1、$() 获得页 ...
- 2008-03-26 15:30
- 浏览 1375
- 评论(0)
在此想和大家分享一个不错的编写properties文件的Eclipse插件(plugin),有了它我们在编辑一些简体中文、繁体中文等Unicode文本时,就不必再使用native2ascii编码了。您可以通过 Eclipse中的软件升级(Software Update)安装此插件,步骤如下:
1、展开Eclipse的Help菜单,将鼠标移到Software Update子项,在出现的子菜单中点击Find and Install;
2、在Install/Update对话框中选择Search for new features to install,点击Next;
3、在Install对话框中点击Ne ...
- 2008-03-26 11:55
- 浏览 2361
- 评论(0)
请看下面简单例子,不多解释.
父窗体:test.htm
<HTML>
<HEAD>
<TITLE> Test Page </TITLE>
<script src="prototype-1.4.0.js"></script>
<script language="javascript">
function show(){
//改变iframe中的元素id为myH1的内容
window.frames["iframe_text ...
- 2008-03-25 09:07
- 浏览 8771
- 评论(2)
<iframe frameborder=0 width=170 height=100 marginheight=0 marginwidth=0 scrolling=no src="move-ad.htm"></iframe>
<IFRAME>用于设置文本或图形的浮动图文框或容器。
BORDER
<IFRAME BORDER="3"></IFRAME>
设定围绕图文框的边缘宽 ...
- 2008-03-24 14:05
- 浏览 3189
- 评论(0)
<script type="text/javascript">
function send(event){
//如果按了回车键也发送信息
if(event.keyCode==13) {//键盘按下Enter键
sendMessage();
}
}
function sendMessage(){
...
}
</script>
...
<p>
<input type="text" id="text" onk ...
- 2008-03-18 14:23
- 浏览 5654
- 评论(1)