`
文章列表
《Constructors considered mildly confusing》 感觉学习javascript,还是要多看看外国人写的东西啊!!!.   还是有很多看不懂的地方。je上有人对此的探讨,现摘录一下。至于对错,以后再辨。   1.  In javascript, every object has a constructor property that refers to the constructor function that initializes the object. 这句话的大意是:   javascript中,每一 ...
Why does an onclick property set with setAttribute fail to work in IE?   Ran into this problem today, posting in case someone else has the same issue. var execBtn = document.createElement('input'); execBtn.setAttribute("type", "button"); execBtn.setAttribute("i ...
1. 使用json-lib时,完全相同的代码,在一个项目中可以正常使用。 在别的项目中报以下错误信息:   系统发生运行期异常: 错误代码: net.sf.json.JSONException 错误信息: java.lang.ClassCastException: JSON keys must be strings. 异常位置: class :net.sf.json.JSONObject method :_fromMap ...
1. var foo1=example(); 2. var foo2=example;   说明:  第一种情况,调用example函数,然后将返回值赋给foo1。          第二种情况,将函数example引用赋给foo2。
1.   javascript的json版本目前有两个          链接1  http://www.json.org/json.js          链接2 http://www.json.org/json2.js   2.   首先都需要引入       <script type="text/javascript" src="js/json/json版本.js"></script>   3.   json.js 开始部分有这样一句话      This file has been supercede ...
1.  首先,看一下代码. 1//需要首先通过Javascript来解决内容部分奇偶行的背景色不同 $(function(){ //找到表格的内容区域中所有的偶数行 $("tbody tr:even").css("background-color","#E3E9D8"); //我们需要找到所有学号的单元格 var numTd=$("tbody td:even"); //给这些单元格注册鼠标点击事件 numTd.click(function(){ //找到当前鼠标点击的td,th ...
父页面   <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <title>Untitled Document</title> <script type="text/javascript"> function f2method(){ alert("f2method&quo ...
今天偶然看到一个css的网站 http://www.52css.com/ 感觉还不错   下面是 “正确的使用margin:0 auto与body{text- align:center;}实现元素居中” 的链接  http://www.52css.com/article.asp?id=505   方便自己以后查看
function showDiv(Title,w,h,src,dac){ var options = {modal: true,title:Title,closeText:"[x]",width:w,height:h,afterHide:function(){ var div_modal_iframe=document.getElementById("frame"); if(typeof dac != "function"){ alert("parameter dac is not a ...
public static void main(String[] args) { Calendar calendar=Calendar.getInstance(); //calendar.add(Calendar.DATE, -1); System.out.println(calendar.getTime()); System.out.println(calendar.get(calendar.DAY_OF_WEEK)); }   一周中的第几天,需要用到get()方法。 public i ...
1.官方地址  http://onehackoranother.com/projects/jquery/boxy/ 2.网路上的好文章: http://www.zhangxinxu.com/wordpress/?p=318 http://www.zhangxinxu.com/study/200911/jQuery-plugin-boxy.html 讲的非常详细。   3.个人使用总结   a. 如果ie,ff,chrome下弹出的dialog都不是 圆角边 . boxy.css 可能版本不一致。 b. IE下对话框不能弹出。需要在开始加入<!DOCTYPE html PUB ...
转自:http://blog.ixpub.net/viewthread-1049428 今天让同事把Myeclipse的WED项目导入到eclipse中,他竟然不会查了半天才来告诉我.....我让他去网上查他说没有,我自己查下网上关 于这个说明的确很少(狂汗) 今天我在这发个帖教大家一个 ...
将工程中的.class文件删除,同时重新编译工程
<style> <!-- .even {background:#FFF38F;} .odd {background:#FFFFEE;} .selected {background:#0099FF;} --> </style> <script type="text/javascript" src="jquery/jquery-1.3.1.js"></script> <script type="text/javasc ...

超级巡警 spi链

鄙人操作系统: xp sp2 学校安装上网客户端后,由于端口冲突。访问自己写的jsp页面,直接变成下载。 卸载掉客户端后,在别的地方上网。网页直接出现bad request。用超级巡警的“分析”工具查看"WinSock SPI". 发现安装客户端后的spi链存在。右键选择"自动修复SPI链结构"后,一切正常。 如果不小心选择了“摘除动态链接库”后,在cmd中用 netstat -ano查看 发现没有端口存在。 此时的解决办法:cmd中 输入 ”netsh winsock reset “ ...
Global site tag (gtag.js) - Google Analytics