码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
jquery 常用的表单元素控制
判断radio是否选中并取得选中的值 One:$("input[name='items']:checked").val(); Two:function checkradio(){ var item = $(":radio:checked"); var len=item.length; if(len>...
分类:Web程序   时间:2014-08-22 16:01:58    阅读次数:242
小菜的jquery-2.1.1源码分析(一)
自己根据自己的理解去尝试分析下大名鼎鼎的jquery的源码,一来提高自己使用jqueryAPI的使用能力,最重要的是提高自己javascript的能力,加油!下载的是官网的http://code.jquery.com/jquery-2.1.1.js,2.1.1版本。(function( global...
分类:Web程序   时间:2014-08-22 15:57:18    阅读次数:242
LeetCode "Edit Distance"
A really classic 2D DP problem. And I'm glad that I figured out the transfer function without checking any other resources.After that, everything is s...
分类:其他好文   时间:2014-08-22 15:46:38    阅读次数:232
jQuery Mask
$(document) .ready( function() { $('.phone_with_ddd').mask('(00) 0000-0000'); $('.cep').mask('00.000-000...
分类:Web程序   时间:2014-08-22 14:23:58    阅读次数:509
26 个 jQuery使用技巧
1. 禁用右键点击(Disable right-click)$(document).ready(function(){$(document).bind("contextmenu",function(e){returnfalse;});});2. 禁用搜索文本框(Disappearing search...
分类:Web程序   时间:2014-08-22 14:13:48    阅读次数:367
PHP根据两个经纬度坐标计算距离
function?radian($d)?{ ????????????$d?*?3.1415926535898?/?180.0;?? } function?distance_calculate($longitude1,?$latitude1,?$longitude2,?$latitude2)?{ ???????????...
分类:Web程序   时间:2014-08-22 13:10:19    阅读次数:209
js循环
$('.xcarcoin_tb').each(function(i){ var aika='爱卡币'; if(data[i]==0){ }else{ $(this).text(aika+data[i]); } })$.each(data.log, function(i,item) { str +='...
分类:Web程序   时间:2014-08-22 12:54:28    阅读次数:247
jquery轻松操作CSS样式
$(this).click(function(){if($(this).hasClass(“zxx_fri_on”)){$(this).removeClass(“zxx_fri_on”);}else{$(this).addClass(“zxx_fri_on”);}return false;});添加...
分类:Web程序   时间:2014-08-22 12:52:18    阅读次数:325
Event in Backbone
本文主要讲下Bacbone中的事件系统,先声明一个工具类: 1 var slice = Array.prototype.slice; 2 _ = (function () { 3 var _ = function () { }; 4 _.extend = fu...
分类:其他好文   时间:2014-08-22 12:42:26    阅读次数:218
trim函数
html clearjs //去空白 function clearFun(str) { str = str.replace(/^\s+/, ''); for (var i = str.length - 1; i >= 0; i--) { ...
分类:其他好文   时间:2014-08-22 12:40:46    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!