JS输出一个随机数函数function RandomNumber(){ return Math.ceil(Math.random() * 85);}……继续阅读 » 4年前 (2021-03-12) 1870浏览 1436个赞
js中修改当前窗口大小的方法function resize_window(){ // move the window to 0,0 (X,Y) window.moveTo(0, 0); // resize the window to 800x600 window.resizeTo(800, 600); } ……继续阅读 » 4年前 (2021-03-12) 2745浏览 2904个赞
JavaScript判断数组是否包含指定元素function in_array( what, where ){ var a=false; for(var i=0;i<where.length;i++){ if(what == where[i]){ a=true; break; } } return a……继续阅读 » 4年前 (2021-03-12) 1630浏览 1329个赞
HTML5轻松实现拖拽效果的演示范例<!DOCTYPE HTML><html><head><style type="text/css">#div1, #div2{float:left; width:100px; height:35px; margin:10px;padding……继续阅读 » 4年前 (2021-03-12) 1616浏览 1788个赞
使用html的标记返回顶部,需要在顶部添加一个标记,本代码靠js实现,无需顶部标记<!------> <script type="text/javascript"> function init(){ document.getElementById('gtop').oncli……继续阅读 » 4年前 (2021-03-12) 2949浏览 1483个赞
纯JavaScript实现的淡入淡出效果,无需jQuery一类的框架,非常不错。function opacity(id, opacStart, opacEnd, millisec) { //speed for each frame var speed = Math.round(millisec / 100); var timer = 0; //……继续阅读 » 4年前 (2021-03-12) 1812浏览 102个赞
一个计算多个参数总和的JS函数,可以提供任意多个参数,计算出总和var sum = function() { var args = toArray.apply(null, arguments); // alert(args.length); if (args.length == 1) return args[……继续阅读 » 4年前 (2021-03-12) 2359浏览 1675个赞
javascript输出格式化后的数组String.prototype.print_f = function() { var formatted = this; for (var i = 0; i < arguments.length; i++) { var regexp = new RegExp('\\……继续阅读 » 4年前 (2021-03-12) 2641浏览 666个赞
这段代码可以在客户端检测常用的操作系统类型//OS DETECTION...var OSName="Unknown OS";if (navigator.appVersion.indexOf("Win")!=-1) OSName="Windows";if (navigator.appVer……继续阅读 » 4年前 (2021-03-12) 3034浏览 2380个赞
本js代码通过对js对象进行各方面的比较来判断两个对象是否相等Object.equals = function( x, y ) { // If both x and y are null or undefined and exactly the same if ( x === y ) { retu……继续阅读 » 4年前 (2021-03-12) 1974浏览 594个赞
JS通过navigator对象检测浏览器的类型,这个函数可以直接用在你的项目中,非常方便function whichBrs() { var agt=navigator.userAgent.toLowerCase(); if (agt.indexOf("opera") != -1) return 'Opera'……继续阅读 » 4年前 (2021-03-12) 2768浏览 414个赞
jQuery实现的多选<!DOCTYPE /><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <t……继续阅读 » 4年前 (2021-03-12) 3068浏览 529个赞
非常完善的Email正则表达式验证function _validateEmail( $email ){ var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[……继续阅读 » 4年前 (2021-03-12) 2622浏览 1529个赞
简单的JavaScript显示和隐藏元素// show or hide a selected element// if no state is given, the visibility is toggled// otherwise visibility is set to hidden or visible as selectedfunctio……继续阅读 » 4年前 (2021-03-12) 1623浏览 903个赞
非常不错的js二进制时钟代码/******************************************************************************** Snarkles.Net Useless Binary Time (SNUBT)* * ThinkGeek's Binary LED Clock.……继续阅读 » 4年前 (2021-03-12) 2332浏览 824个赞
Javascript通过clientWidth,scrollWidth获取窗口宽度和高度<SCRIPT LANGUAGE="JavaScript"> var s = "网页可见区域宽 :"+ document.body.clientWidth; s += "\r\n网页可见区域高……继续阅读 » 4年前 (2021-03-12) 2553浏览 1007个赞
定义了一个可以反复指定指定函数的类,功能类似于javascript中setTimeout# Simple version:import sys, timeclass RetryError(Exception): passdef retryloop(attempts, timeout): starttime = time.time(……继续阅读 » 4年前 (2021-03-12) 2117浏览 1760个赞
用户选择表格数据时,点击某行,高亮显示某行<html><head><title></title><style type="text/css"> .trbg { background-color:Red; }</style> <s……继续阅读 » 4年前 (2021-03-12) 2015浏览 2914个赞
JavaScript直接跳出下载的简单方法window.location = "../File/sharejs.zip";……继续阅读 » 4年前 (2021-03-12) 2873浏览 536个赞
php查询数据库显示小图,点击小图弹出大图<?php //Get all the images in the database (use a WHERE clause to limit what it finds) $sql = mysql_query("SELECT * FROM database_name"); //……继续阅读 » 4年前 (2021-03-12) 1408浏览 1130个赞
这段代码演示了如何通过php建立一个简单的用户注册表单及提交程序<?php if(isset($_POST['submit'])){ # connect to the database here # search the database to see if the user name has been ……继续阅读 » 4年前 (2021-03-12) 2174浏览 1655个赞
js实现的单位轮流值班轮换表<script language="javascript"> var src="张三,李四,王五,赵六,钱七,孙八,曾久" var srcArray=src.split(",") var beginDate=new Date(20……继续阅读 » 4年前 (2021-03-12) 1239浏览 2668个赞
javascript通过正则表达式验证用户输入的金额是否正确<script type="text/javascript"> <!-- function MoneyCheck(){ var isNum = /^\d+(\.\d+)?$/; var money = docum……继续阅读 » 4年前 (2021-03-12) 2749浏览 818个赞
通过记录开始时间和结束时间计算一段脚本的之行时间<?php //Create a variable for start time $time_start = microtime(true); // Place your PHP/HTML/JavaScript/CSS/Etc. Here //Create a variable for en……继续阅读 » 4年前 (2021-03-12) 2263浏览 1379个赞
JS如何访问navigator.* 变量<script type="text/javaScript"><!-- // dw() is just a alias for document.write()// to make the code shorter function dw(s){ docu……继续阅读 » 4年前 (2021-03-12) 1547浏览 2465个赞
JavaScript通过正则表达式处理url参数var url='www.baidu.com?a=123&b=456&c=789&e=dfsdfsdfsdfsdfsdfsdf&f=46545454545454785&g=e23232dsfvdfvdf'; /** * 格式化查询字符串(正则……继续阅读 » 4年前 (2021-03-12) 2618浏览 2265个赞
通过JS打开图片另存为对话框,提示用户保存文件<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> New Document </title> <……继续阅读 » 4年前 (2021-03-12) 1336浏览 1179个赞
node.js log模块日期格式化 在node.js开发过程中使用了npm install log默认下载的模块,日期时间很不符合习惯。[Tue Dec 25 2012 21……继续阅读 » 4年前 (2021-03-12) 1274浏览 659个赞
JavaScript判断浏览器的类型var request = false;var btype=getinternet(); function getinternet() { if(navigator.useragent.indexof("msie")>0) { ret……继续阅读 » 4年前 (2021-03-12) 1215浏览 2385个赞
本代码首先通过head进行301转向,如果失败,则通过http-equiv=”Refresh”转向,如果不行再通过js进行转向,再不行直接在页面上输出链接地址让用户自己点击链接转向function safe_redirect($url, $exit=true) { // Only use the header red……继续阅读 » 4年前 (2021-03-12) 1350浏览 1943个赞
javascript获取当前鼠标的坐标位置<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ht……继续阅读 » 4年前 (2021-03-12) 1336浏览 1448个赞
一个伦敦奥运会倒计时的JS代码,简单的修改一下就可以用作其它倒计时<SCRIPT LANGUAGE="JavaScript"> //作者:www.tongqiong.com<!-- var urodz= new Date("July 28,2012"); var s="伦敦奥……继续阅读 » 4年前 (2021-03-12) 1472浏览 2333个赞
JS解析json数据并将json字符串转化为数组的实现方法,json数据在ajax实现异步交互时起到了很重要的作用,他可以返回请求的数据,然后利用客户端的js进行解析,这一点体现出js的强大,本文介绍JS解析json数据并将json字符串转化为数组的实现方法。<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML……继续阅读 » 4年前 (2021-03-12) 3103浏览 1341个赞
html5 canvas制作的简单时钟效果<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <style type="text/css&……继续阅读 » 4年前 (2021-03-12) 1689浏览 2544个赞
JS redirect转向方法<script type="text/javascript"><!-- window.location = "http://www.google.com/"//--></script>……继续阅读 » 4年前 (2021-03-12) 1803浏览 2431个赞
jquery限制textarea的字数长度并显示已输入字符长度<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">……继续阅读 » 4年前 (2021-03-12) 2893浏览 2955个赞
修改一下第二行的url地址即可获得你想要的网页的html代码<?php // display source code $lines = file('http://google.com/'); foreach ($lines as $line_num => $line) { // loop thru e……继续阅读 » 4年前 (2021-03-10) 1561浏览 0评论2388个赞
php版快速排序代码function quicksort($seq){ if(!count($seq)) return $seq; $k = $seq[0]; $x = $y = array(); for($i=count($seq); --$i;) { if($seq[$i] <= $k) { $x[] = $……继续阅读 » 4年前 (2021-03-10) 1984浏览 0评论1297个赞
jQuery读写操作cookie的代码演示,可以对cookie进行读写操作,可以设置域名和过期时间 插件代码/*! * jQuery Cookie Plugin v1.3 * https://github.com/carhartl/jquery-cookie * * Cop……继续阅读 » 4年前 (2021-03-10) 2680浏览 0评论2247个赞
这段代码可以帮助你判断任意图片的主色调,使用了简单的统计算法实现$i = imagecreatefromjpeg("image.jpg"); for ($x=0;$x<imagesx($i);$x++) { for ($y=0;$y<imagesy($i);$y++) { $rg……继续阅读 » 4年前 (2021-03-10) 2221浏览 0评论2012个赞
需要判断代码运行环境是否是HTTPS服务器,只需要判断_SERVER[‘HTTPS’]是否打开即可if ($_SERVER['HTTPS'] != "on") { echo "This is not HTTPS"; }else{ echo &……继续阅读 » 4年前 (2021-03-10) 2971浏览 0评论198个赞
php实现二分查找算法// $low and $high have to be integersfunction BinarySearch( $array, $key, $low, $high ){ if( $low > $high ) // termination case { return -1; ……继续阅读 » 4年前 (2021-03-10) 2299浏览 0评论2500个赞
php检查日期是否合法function check_date($date) { //检查日期是否合法日期 $dateArr = explode("-", $date); if (is_numeric($dateArr[0]) && is_numeric($dateArr[1]) &&……继续阅读 » 4年前 (2021-03-10) 2018浏览 0评论2617个赞
php自己实现memcached的队列类<?php/* * memcache队列类 * 支持多进程并发写入、读取 * 边写边读,AB面轮值替换 * @author lkk/lianq.net * @create on 9:25 2012-9-28 * * * @example: * $obj = new memcacheQu……继续阅读 » 4年前 (2021-03-10) 1487浏览 0评论1564个赞
php无限分类获得当前位置的函数<?php/* * @name pcb_article_position * @access public * @param int $id * @param string $split * @return string */function pcb_article_position ……继续阅读 » 4年前 (2021-03-10) 2176浏览 0评论233个赞