加载中
javascript---循环输出对象中的属性

循环输出对象中的属性 for(var i in Vpool_addNewPro_Durban) { if (Vpool_addNewPro_Durban.hasOwnProperty(i)) { alert(i, '' + Vpool_addNewPro_Durban[i]); } }...

2012/03/05 18:08
22.2W
jquery---实现目标元素的滚动

$("html,body").animate({scrollTop:Vpool_addNewPro_Durban.proName.offset().top},1000); Vpool_addNewPro_Durban.proName---你要滚动到的元素...

2012/03/05 17:23
22.1W
jquery.validate自定义规则

// 字符验证 jQuery.validator.addMethod("stringCheck", function(value, element) { return this.optional(element) || /^[\u0391-\uFFE5\w]+$/.test(value); }, "只能包括中文字、英文字母...

2012/04/21 14:17
2.5K
jQuery数据类型

jQuery除了包含原生JS中的内置数据类型(built-in datatype),还包括一些扩展的数据类型(virtual types),如Selectors、Events等。 1. String String最常见,几乎任何一门高级编程语言和脚本语...

2012/08/30 23:45
1.8K
php+javascript 实现将html元素转换为图片

1,准备要素 1)替换字体的js文件 js代码: function com_stewartspeak_replacement() { /*   Dynamic Heading Generator By Stewart Rosenberger http://www.stewartspeak.com/headi...

内部导航

html文件 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html dir="ltr" lang="en"> <head>   <meta http-equiv="Content-Type" content="t...

2012/01/04 10:52
984
jquery (MultiSelect )

jquery (MultiSelect ) 网址:http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/ 不过 这个网址http://www.erichynds.com,会有很多好东西,记住啊...

2012/06/16 19:56
773
javascript--》实现数字的千分号添加

实现数字的千分号添加 类似: 123456789=>123,456,789 function percent(str, step, splitor) { str = str.toString(); var len = str.length; if(len > step) { ...

2012/06/28 15:05
744
juqery---Flexigrid – Web 2.0 Javscript Grid for...

ui页面代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Ingrid. the jQuery D...

2012/04/24 23:33
556
Jquery中使用setInterval和setTimeout

直接在ready中调用其他方法,会提示缺少对象的错误,解决方法如下: 方法1. 应用jQuery的扩展可以解决这个问题。 $(document).ready(function(){ $.extend({ show:function(){ alert("...

2012/01/03 15:49
554
动态切换图片

// JavaScript Document pop = {   triggerClass:'picturepop',   openPopupLinkClass:'popuplink',   popupClass:'popup',   displayPrefix:'Hide',   popContainer:null,   init:function(){     i...

2012/01/03 17:30
530
(图片变灰)Crossbrowser Html5 Black and white jQuery...

Crossbrowser Html5 Black and white jQuery plug in 1 add jQuery and plug in to the page <script src="js/jquery.min.js"></script> <script src="js/jQuery.BlackAndWhite.js"></script...

2012/06/08 07:54
505
jquery插件masonry的使用方法

这里是详细文章的地址 jquery插件masonry的使用方法----http://www.css88.com/archives/3321

2012/01/30 17:15
486
jquery---jQuery.validationEngine(jquery表单插件)

jQuery.validationEngine 感觉比validate牛叉N倍啊 DEMO地址:http://www.position-relative.net/creation/formValidator/ Github地址:https://github.com/posabsolute/jQuery-Validation-Eng...

2012/08/08 22:14
370
javascript---input文本框禁用右键和复制粘贴功能的代码

function click(e) { if (document.all) { if (event.button==1||event.button==2||event.button==3) { oncontextmenu='return false'; } } if (document.layers) { if (e.which ...

2012/02/28 16:56
343
jquery插件 --- 图表 表格

6款jQuery图表插件 http://paranimage.com/6-jquery-charts-plugins/ jQuery 表格插件汇总 http://www.cnblogs.com/gaoweipeng/archive/2010/04/17/1714458.html...

2012/04/24 23:31
328
jquery --- Poshy Tip jQuery Plugin

作为一个抄袭者---从抄袭开始 jquery我无比的爱你啊 提示的插件:Poshy Tip jQuery Plugin 下载地址记住:开源社区有哦 http://vadikom.com/demos/poshytip/...

2012/07/26 18:24
276
jQuery--validate插件 校验

官网地址: http://bassistance.de/jquery-plugins/jquery-plugin-validation 一导入js库 <script src="../js/jquery.js" type="text/javascript"></script> <script src="../js/jquery.val...

2012/04/21 12:43
268

没有更多内容

加载失败,请刷新页面

返回顶部
顶部