1 $("#em").bind({ 2 focus:function(){ 3 var val=$(this).val(); 4 if(val==""){ 5 ...
分类:
其他好文 时间:
2014-08-26 00:17:35
阅读次数:
271
1 //[] 2 3 $(function () { 4 $("#send-btn" ).click(function (){ 5 //接受表单的值 6 var username=$('input[name=us...
分类:
其他好文 时间:
2014-08-26 00:15:05
阅读次数:
505
js中apply方法的使用1、对象的继承,一般的做法是复制:Object.extendprototype.js的实现方式是:Object.extend = function(destination, source) { for (property in source) { destination[p...
分类:
移动开发 时间:
2014-08-26 00:14:05
阅读次数:
267
jQuery遍历table中的tr td并获取td中的值
$(function(){
$("#tableId tr").find("td").each(function(){
var year = $("#year").val();
var month = $("#month").val();
var day = $(this).tex...
分类:
Web程序 时间:
2014-08-25 22:53:25
阅读次数:
242
在项目开发中很多人会有这样的需求,就是想要操作做过了不能后退,之前在网上找过点,都说没有什么好的办法,我有的说有js,但效果不好,不说连点两下可以让他失效,有不同浏览器中也无法兼容,如
function gogo(){
javascript:window.history.forward(1);
}
gogo();
这段js代码加在html中可以在IE与google中有效,但到火狐中就失...
分类:
Web程序 时间:
2014-08-25 21:10:14
阅读次数:
219
在includes/extend.func.php末尾添加方法://取第一张图地址function firstimg($str_pic){$str_sub=substr($str_pic,0,-7).".jpg";//删除缩略图字符串最后七位,然后再补上后缀.jpgreturn $str_sub;}...
分类:
其他好文 时间:
2014-08-25 19:07:54
阅读次数:
182
function () { $('.audio').each(function () { var $this = $(this); var id = $this.attr('audioid'); var src = $this.attr('src')...
分类:
其他好文 时间:
2014-08-25 18:51:44
阅读次数:
239
// 判断类型function isType(type) { return function(obj) { return Object.prototype.toString.call(obj) === '[object ' + type + ']'; }}
分类:
Web程序 时间:
2014-08-25 18:48:04
阅读次数:
137
$.extend($.fn.validatebox.defaults.rules,{ //验证中文 CHS:{validator:function(value){return /^[\u0391-\uFFE5]+$/.test(value);},message:"只能输入汉字."},//字符验证s....
分类:
Web程序 时间:
2014-08-25 18:41:14
阅读次数:
303
--Parent-Child reationship--涂聚文 2014-08-25--得位置的子節點函數表(包含本身)if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetBookPlaceChildren...
分类:
数据库 时间:
2014-08-25 16:59:04
阅读次数:
269