简单的JavaScript邮件验证function checkMail(email){ var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (filter.test(email)) { return true; } retur……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2266浏览 846个赞
asp.net中通过Jquery+Ajax+Json实现完全无刷新分页代码 html代码<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AjaxJson.asp……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1715浏览 1561个赞
不适用javascript,在一个大图片加载出来之前使用一个loading的小图片替换,需要为图片添加class=loading.loading { background: url(loading.gif) no-repeat center center; }……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2144浏览 2621个赞
JavaScript处理不同浏览器的鼠标点击事件// Browser detection var ie=document.all != null; //ie4var op7=navigator.userAgent.indexOf("opera")>0 && operaVersion() <= 7;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2495浏览 2142个赞
Javascript显示和隐藏ul列表<ul id="rightNav"> <li> <h2 class="rightNavItem"><a href="#">Show & Hide</a></h2>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2771浏览 1159个赞
Javascript改变表单元素的背景,如改变文本框的背景function colorChange(formName,formItem){ document.forms[formName.name].elements[formItem.name].style.backgroundColor = "#FFFFFF";}……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2338浏览 743个赞
不适用javascript,完全通过php实现多级列表选择,列表数据从数据库获取A very simple way to build and do a hierarchical html categories browser without javascript , just using html php and mySql<? /* #……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2525浏览 1774个赞
本代码可以从数据库读取数据生成一个类似于windows的资源管理器的树形列表<?php // -*- C++ -*- /* Here are the database definitions (for Solid) that i use in this code. * It should not b……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2845浏览 2810个赞
JavaScript截断字符串,类似于substr(),只不过这个函数不会截断单词,在发生截断后,会添加一个省略号if (!function_exists('subsent')) { function subsent($string, $start = 0, $length = 0, $cap = '...……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1133浏览 1027个赞
JavaScript 10进制和16进制相互转换// convert base 10 to 16 (dec to hex)parseInt(10, 10).toString(16); // convert base 16 to 10parseInt('a', 16).toString(10)……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2808浏览 2441个赞
这段代码主要帮助你理解在javascript中如何使用命名空间// namespaced functionvar NAMESPACED = function (param){ var _privateVar = '_privateMethod loaded: '; var _privateMethod = function (……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1277浏览 1035个赞
javascript的window.open函数弹出窗口,并保持窗口在屏幕上居中显示function popup(url,name,windowWidth,windowHeight){ myleft=(screen.width)?(screen.width-windowWidth)/2:100; mytop=(screen.height)?(……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3056浏览 1420个赞
JavaScript对下拉列表的值进行排序function sortList(id) { var obj = document.getElementById("id"); var values = new Array(); for(var i = 0; i < obj.options.length; i++) { v……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2817浏览 1836个赞
JavaScript关闭页面不弹出提示消息框的方法parent.window.opener = null; parent.window.open("", "_self"); parent.window.close(); parent.window.location.href = ""……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2466浏览 526个赞
JavaScript中遍历一个对象的属性,在控制台输出var object = { a:10; b:20; s:'hello'}; $.each(object, function(name, value) { console.log(name+':'+……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2707浏览 2453个赞
JavaScript性能优化 – 类的方法和属性定义//常规定义方法,慢MyClass = function(){ this.localMethod = function(){ }}//通过prototype定义,快MyClass.prototype.localMethod = function(){ }……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2242浏览 571个赞
php逐个字符读取文件范例代码,每次只读取一个字符<?php$file=fopen("welcome.txt","r") or exit("Unable to open file!");while (!feof($file)) { echo fgetc($file); }……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2084浏览 891个赞
在php里写入cookie非常简单,只需要使用setcookie函数即可,语法如下:setcookie(name, value, expire)下面是演示代码<?php$expire=time()+60*60*24*60;setcookie("user", "75271.com", $expire);……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2256浏览 2519个赞
php中删除cookie,可以通过让cookie马上过期来完成,下面的代码将cookie的过期时间设置为一小时前<?phpsetcookie("user", "", time()-3600);?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3105浏览 2793个赞
php中$_SESSION数组用于存储session数据,$_SESSION是全局的,所以在任何地方都可以调用<?phpsession_start();//storing session variable$_SESSION['views']=1;?> <html><body> &l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1379浏览 2375个赞
php清除和销毁session的代码下面的代码分别用户删除单个session值和全部session unset() 用于释放一个已经存在的session值.可以使用 session_destroy() 函数销毁全部session.<?phpunset($_SESSION……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2988浏览 2989个赞
php可以通过$_COOKIE 读取cookie,下面是演示代码<html><body> <?phpif (isset($_COOKIE["user"])) echo "Welcome " . $_COOKIE["user"] . "!<……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2025浏览 269个赞
本代码介绍了在php中如何获取表单提交的信息,并发送邮件 保存下面的html代码到:email.html文件<html> <head> <title>Simple Send Mail Form www.75271.com(脚本分享网)&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2834浏览 553个赞
程序中用到了php的mail函数,该函数定义如下:bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )如果邮件发送成功返回True,否则返回False&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2437浏览 143个赞
php校验表单,检测字段是否为空,当表单中有未填写的字段,则会显示错误信息。<html><body><form METHOD="POST" ACTION="ErrorCheck.php"><h1>Contact Information</h1>&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3122浏览 978个赞
将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值<form method="post" action="arrayformdata.php"><label>Tags</label><input type="text" na……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2868浏览 366个赞
要遍历XML树,我们可以使用下面的代码<?php function walk_tree ($node, $depth = 0) { for ($i = 0, $indent = ''; $i < $depth; $i++) $indent .= ' ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2958浏览 1930个赞
网页提交textarea文本框数据到php后端代码范例,修改时注意修改表达的action和后端php网页的地址 html代码<html><head><title>A simple HTML form from www.75271.com(脚本……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2757浏览 1227个赞
我们可以通过在程序的前后分别记录开始和结束时间,两个时间差就是程序的执行时间。<?php$long_str = "this is a test to see how much time md5 function takes to execute over this string"; // start timing from……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2489浏览 2405个赞
php中可以通过rmdir()函数删除一个空目录<?php if (file_exists("/temp/test")) { rmdir("/temp/test"); print("Directory removed.\n");} else { print("Di……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1868浏览 2797个赞
要让php接收表单传递过来的值,需要将表单的action设置为php后端页面的地址,$ _POST是PHP的全局数组保存所有收到的值。 html代码<html><head><title>脚本分享网(www.75271.com)演示代码<……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1625浏览 1641个赞
下面的代码先判断目录是否存在,然后通过mkdir()函数在服务器上创建了一个目录<?php if (file_exists("/temp/test")) { print("Test Directory already exists.\n");} else { mkdir("/temp/t……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1251浏览 1571个赞
php中可以通过file_get_contents()函数将文件一次性读取到字符串中<?php $file = file_get_contents("/tmp/file.txt");print("Size of the file: ".strlen($file)."\n");?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2241浏览 254个赞
在php中要一次输入多行字符,可以使用 >>>定界符方式,在 >>>后面跟着一个唯一标识符,换行输入多行字符串,最后使用同样的标识符结束字符串即可,下面是演示范例。$who = "World";echo <<<TEXTSo I said, "Hello $who"TEXT; ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1525浏览 906个赞
php中可以通过file()函数将文件读取到数组中,数组中的元素即为文件的每行,file()函数通过”\n”按行分割文件保存到数组,所以数组每个元素都是以”\n”结尾,我们可以通过 rtrim()函数将其去除<?php $lines = file("/tmp/file.txt")……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1660浏览 1806个赞
php中可以通过fopen()打开一个文件,第二个参数设置为”r”表示已只读方式打开,函数返回一个文件句柄,其它函数就可以通过这个文件句柄对文件进行不同方式的读取<?php $file = fopen("/tmp/file.txt", "r");print("Type o……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2013浏览 1247个赞
下面的代码通过array_shift()函数加while循环不断移除数组的第一个元素,直到数组为空<?php$alpha = array("a", "b", "c"); while ( count( $alpha ) ) { $val = array_shift( $alpha)……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2210浏览 725个赞
php中有两个函数用来判断数组中是否包含指定的键,分别是array_key_exists和isset array_key_exists语法如下array_key_exists($key, $array) 如果……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1586浏览 2940个赞
php通过array_unshift函数添加多个变量到数组前端,函数返回添加后的数组元素个数<?php $alpha = array("a", "b", "c");$final = array_unshift($alpha, "d","e");……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2858浏览 2098个赞
php中你可以通过isset函数判断变量是否存在echo isset ($x); 如果变量存在并有值返回true,否则返回false……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2350浏览 1769个赞
php中针对数组遍历有一系列的函数是我们可以非常方便的操作数组,要遍历一个数组,第一步就是要将指针指向数组开头,使用reset()函数,使用prev()和next()函数可以查看数组的上一个和下一个元素。在然和位置都可以使用current()函数获得当前的值,使用key()函数获得键值$array = array(’foo’ => ’bar’, ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2745浏览 1937个赞
下面的代码演示了php中如何获取用户上传的文件,并限制文件类型的一般图片文件,最后保存到服务器<?php$allowedExts = array("gif", "jpeg", "jpg", "png");$extension = end(explode("……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2584浏览 2403个赞
php通过array_push()函数添加多个变量到数组末尾,array_push函数接受任意数量的变量添加。<?php $alpha = array("a", "b", "c");$final = array_push($alpha, "d","e&q……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3011浏览 1838个赞
下面的php代码通过点操作符连接多个字符串,然后通过strlen获得字符串的长度输出$str1 = "hello";$str2 = "75271.com";$str = $str1 . " " . $str2;echo $str . ",字符串长度:" . strle……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2994浏览 2458个赞
php对于类似$age = array(“zhangshan”=>14,”lisi”=>15,”sharejs”=>16);这样的数组可以通过foreach的方法进行遍历,下面是详细的代码$age = array("zhangshan"=>14,"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2342浏览 190个赞