HTML5之特效之雨点效果代码<!DOCTYPE HTML> <html><head><script type="text/javascript" src="jquery-1.7.2.min.js"></script><script typ……继续阅读 » 4年前 (2021-03-12) 2813浏览 2199个赞
javascript table 隔行变色代码function changeTableColor(oddColor,evenColor){ var tables=document.getElementsByTagName('table'); for(var i=0;i<tables.length;i++){ var ……继续阅读 » 4年前 (2021-03-12) 3132浏览 2598个赞
基本的HTML5视频播放控制代码演示<!DOCTYPE html> <html> <body> <div style="text-align:center"> <button onclick="playPause()">Play/Pause&……继续阅读 » 4年前 (2021-03-12) 2188浏览 1667个赞
javascript通过表格绘制颜色填充矩形<html> <head> <title> Javascript画矩形 </title> <script type="text/javascript"> //定义函数,传入设置参数,返回一个有背景颜色的表……继续阅读 » 4年前 (2021-03-12) 1795浏览 1319个赞
jquery.validate.js是jquery下的一个验证插件,功能比较强大,早就有所耳闻但是一只没有动手用过,现在在于能够研究一下了。 这里转载一篇前辈写的文章,在我自己的理解上修改了一下,仅作记录。 国内某大公司的代码<script type="text/……继续阅读 » 4年前 (2021-03-12) 2339浏览 152个赞
JavaScript将一个整数数组先按照因子数量排序,再按照数字大小排序某笔试中的题,不得不承认这道题是个好题,考察了很多方面。js的数组操作,算法,逻辑能力,还有预防各种坑的能力……一共搞了大概有4小时,函数逐个用firebug测,无法想象在考场上大概不到1小时,还不能调试……能写对的绝对是个神。公司遇到这样的神,就算其他题都不写也应该收了。来源:http……继续阅读 » 4年前 (2021-03-12) 2518浏览 941个赞
JavaScript中克隆对象function clone(obj) { // Handle the 3 simple types, and null or undefined if (null == obj || "object" != typeof obj) return obj; // Handle D……继续阅读 » 4年前 (2021-03-12) 2724浏览 1698个赞
JavaScript中检查字符串是否为空的最简单方法if (strValue) { //do something}……继续阅读 » 4年前 (2021-03-12) 2493浏览 1447个赞
JavaScript对URL进行编码var myUrl = "http://example.com/index.html?param=1&anotherParam=2";var myOtherUrl = "http://example.com/index.html?url=" + encodeURICo……继续阅读 » 4年前 (2021-03-12) 2229浏览 2761个赞
JavaScript中16进制和10进制的相互转换var sHex=(255).toString(16);//ffvar iNum=parseInt("ff",16);//255……继续阅读 » 4年前 (2021-03-12) 2074浏览 118个赞
107个JavaScript基本函数来源:http://blog.csdn.net/liuzx32/article/details/7770243 * 1.document.write(”");为 输出语句 * 2.JS中的注释为// * 3.传统的HTML文档顺序是:document->html->(head……继续阅读 » 4年前 (2021-03-12) 1622浏览 1151个赞
JavaScript的Base64编码代码片段var Base64 = {// private property_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",// public method for encoding……继续阅读 » 4年前 (2021-03-12) 1915浏览 2938个赞
自定义JavaScript中的endWith函数String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1;}; ……继续阅读 » 4年前 (2021-03-12) 2096浏览 342个赞
JavaScript字符与ASCII码之间的转换console.log("\n".charCodeAt(0));//10console.log(String.fromCharCode(65));//A……继续阅读 » 4年前 (2021-03-12) 2962浏览 1884个赞
JavaScript添加和删除Class//Add Classdocument.getElementById("MyElement").className += " MyClass";//Remove Classdocument.getElementById("MyElement").c……继续阅读 » 4年前 (2021-03-12) 1356浏览 2577个赞
javascript快速排序算法代码function qsort(a) { if (a.length == 0) return []; var left = []; var right = []; var pivot = a[0]; for (var i = a.length; --i;) { i……继续阅读 » 4年前 (2021-03-12) 1841浏览 146个赞
javascript冒泡法排序算法演示代码<html><head><script type="text/javascript">// GLOBAL FUNCTIONArray.prototype.bubble_sort = function() { var i, j; va……继续阅读 » 4年前 (2021-03-12) 2515浏览 2851个赞
JavaScript中的日期格式化Date.prototype.toString=function(format,loc){ var time={}; time.Year=this.getFullYear(); time.TYear=(""+time.Year).substr(2); time.Mon……继续阅读 » 4年前 (2021-03-12) 2586浏览 764个赞
这是一个非常简单形象的JS类使用范例,this的作用就是指向调用该方法的对象,比如这个例子,当调用new Person的时候,this就表示he这个对象,调用this.name 就等于 he.name。email前面为什么要使用一个下划线呢?因为js只有公共作用域,没有私用的属性和方法,所以开发者为了做区别,就用一个下划线表示这个属性或者方法是私有的,当然,……继续阅读 » 4年前 (2021-03-12) 1576浏览 700个赞
这段代码演示了javascript中如何输入多行字符串var htmlSTring = "<div>\ This is a string.\</div>";……继续阅读 » 4年前 (2021-03-12) 3585浏览 2842个赞
JS选择textarea内的文本,全选<!------> <script type="text/javascript"> function select_field(id){ document.getElementById(id).focus(); docu……继续阅读 » 4年前 (2021-03-12) 1642浏览 2958个赞
将图片的src设置为blank.gif,真正的图片放到data-src<img src="blank.gif" class="lazy" data-src="/images/full-size.jpg" width="240" height="152&quo……继续阅读 » 4年前 (2021-03-12) 2478浏览 2633个赞
这段代码是一个标准的JS版的MD5加密算法var MD5 = function (string) { function RotateLeft(lValue, iShiftBits) { return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits)……继续阅读 » 4年前 (2021-03-12) 1731浏览 1910个赞
自定义个JS事件绑定函数,用这个函数绑定事件更方便<script type="text/javascript">/** * Attach an event handler on a given Node taking care of Browsers Differences * @param {Object} no……继续阅读 » 4年前 (2021-03-12) 2412浏览 1718个赞
JavaScript判断数组是否包含指定的元素,这段代码通过prototype定义了数组方法,这样就可以在任意数组调用contains方法/** * Array.prototype.[method name] allows you to define/overwrite an objects method * needle is the item ……继续阅读 » 4年前 (2021-03-12) 3138浏览 1586个赞
JavaScript在文本框中默认显示图片背景,获得焦点后消失的代码效果演示:http://css-tricks.com/examples/InputWithBackgroundImage/ html代码<form name="searchform" id……继续阅读 » 4年前 (2021-03-12) 2444浏览 1737个赞
JavaScript中setInterval定时器用法var int = setInterval("doSomething()", 5000 ); /* 5 seconds */var int = setInterval(doSomething, 5000 ); /* same thing, no quotes, no paren……继续阅读 » 4年前 (2021-03-12) 2464浏览 1727个赞
通过两端代码介绍JavaScript如何声明全局变量 在函数外定义全局变量var oneVariable;function setVariable(){ oneVariable = "Variable set from within a function!&qu……继续阅读 » 4年前 (2021-03-12) 1188浏览 1195个赞
本范例演示了JS如何获取当前url和url参数的获取function getUrlParm( name ){ var regexS = "[\\?&]"+name+"=([^&#]*)" ; var regex = new RegExp( regexS ) ; var tmpURL ……继续阅读 » 4年前 (2021-03-12) 2170浏览 1034个赞
JavaScript得到url和url的各个部分Javascript可以获得当前页面地址,如:http://css-tricks.com/example/index.html通过window.location可以访问url的各个部分:window.location.protocol = ”http̶……继续阅读 » 4年前 (2021-03-12) 1472浏览 1737个赞
如果浏览器支持JS将会输出welcome ,you have javascript on,否则输出JavaScript is off. Please enable to view full site.<script type="text/javascript"> document.write("Welco……继续阅读 » 4年前 (2021-03-12) 1927浏览 970个赞
利用浏览器的缓存实现类似于浏览器的向前向后功能<input id="btnBack" type="button" value="Back" language="javascript" onclick="fnBack()" /><inp……继续阅读 » 4年前 (2021-03-12) 1830浏览 1418个赞
JavaScript获得指定对象的大小function objectSize(the_object) { /* function to validate the existence of each key in the object to get the number of valid keys. */ var object_size = 0;……继续阅读 » 4年前 (2021-03-12) 2614浏览 880个赞
这段代码用了一个非常巧妙的方法清空数组var myArray = ["one", "two", "three"];// console.log( myArray ) => ["one", "two", "three"]myA……继续阅读 » 4年前 (2021-03-12) 2539浏览 346个赞
本范例演示了JS如何通过window.open函数打开一个新窗口,及其参数设置function open_window(url){ var wparams = 'toolbar=0,location=0,directories=0,status=0,menubar=0,'; wparams += ……继续阅读 » 4年前 (2021-03-12) 1796浏览 748个赞
JavaScript获得url查询参数function getQueryVariable(variable){ var query = window.location.search.substring(1); var vars = query.split("&"); for (va……继续阅读 » 4年前 (2021-03-12) 1193浏览 2813个赞
只要给定Class,就能找到拥有这些class的元素function getElementsByClass(node,searchClass,tag) { var classElements = new Array(); var els = node.getElementsByTagName(tag); // use "*&q……继续阅读 » 4年前 (2021-03-12) 1330浏览 789个赞
JS获取页面的宽度和高度,窗口的宽度和高度,返回一个数组//// getPageSize()// Returns array with page width, height and window width, height// Core code from - quirksmode.org// Edit for Firefox by pHaez……继续阅读 » 4年前 (2021-03-12) 1467浏览 618个赞
JavaScript函数参数默认值// Combiner of passed arguments and defaults (usable with any function)Object.prototype.combine = function(_args){ for(var i in this) { if(typeof _args[i……继续阅读 » 4年前 (2021-03-12) 2825浏览 1459个赞
这段js代码通过每天在不同时段自动更换网页调用的样式表,实现更换皮肤的功能。<script type="text/JavaScript"><!--function getStylesheet() { var currentTime = new Date().getHours(); if ……继续阅读 » 4年前 (2021-03-12) 1564浏览 2442个赞
JavaScript随机从数组读取一项数据function write_quote() { var quotes = [ 'no animals were harmed while making this page', 'made in ulm', ……继续阅读 » 4年前 (2021-03-12) 2926浏览 195个赞
JavaScript检测IE浏览器版本的代码<script type="text/javascript">if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { //test for MSIE x.x; var ieversion=new Number(RegExp.$……继续阅读 » 4年前 (2021-03-12) 2438浏览 165个赞
JavaScript格式化数字为货币格式输出,如:100返回100.00,1.4返回1.40,88.776返回88.78function CurrencyFormatted(amount) { var i = parseFloat(amount); if(isNaN(i)) { i = 0.00; } var minus = '……继续阅读 » 4年前 (2021-03-12) 2615浏览 1482个赞
HTML5的搜索框写法,在HTML4时代,弄个搜索框要实现一些基本功能都需要JS的辅助,HTML5做了很多HTML4应该做但是没有做的事情。<form><p><label>Search:<input name=search autofocus /></label></p><……继续阅读 » 4年前 (2021-03-12) 2003浏览 1127个赞
javascript读取java变量import java.awt.*; import java.applet.*; public class InJava3 extends Applet{ public int iJava = 123; public String sJava = "String from ……继续阅读 » 4年前 (2021-03-12) 2427浏览 2243个赞