发布时间:2013-05-15 06:42:10
首先,要确定你是要禁用全局的还是指定控件 ,如我只要禁用一个文本框的上下键 。点击(此处)折叠或打开NoExec = function(event) {var k = event.which || event.keyCode;if (k == 13 || k == 38 || k == 40) {if ($("#atWi.........【阅读全文】
发布时间:2013-05-15 06:39:32
代码:点击(此处)折叠或打开<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title>for与each性能比较</title><script src="../Cks/jquery-1.7.1.min.js" type="text/javascript"></script>.........【阅读全文】
发布时间:2013-05-13 22:37:06
1. indexposition = index (string, substring, position)返回子串substring在字符串string中的位置,如果不存在则返回-1。参数position是可选项,表示匹配之前跳过的字符数,或者说从该位置开始匹配。 例子如下:[root@localhost ~]# echo -n '/var/fap/test/123' | perl -ne '$rev=index($_, "a"); print .........【阅读全文】
发布时间:2013-05-13 22:34:38
很多php 教程中都有介绍,这里只提供例子。点击(此处)折叠或打开<?php/** * php 静态新闻列表 自动生成代码 * site www.jbxue.com*/function CreateShtml(){ob_start(array("callb.........【阅读全文】
发布时间:2013-05-08 20:05:16
PHP实现的购物车类,收藏下。开发商城系统时备用。本文出处参考:http://www.jbxue.com/article/8133.html代码如下:<?// 购物车类/*使用说明:构造函数 cart 可以使用参数:cart($cartname = 'myCart', $session_id = '', $savetype = 'session', $cookietime = 86400, $cookiepath = '/', $cookiedoma.........【阅读全文】