在实际应用中会遇到这种情况:ajax与php之间传递和接收变量,为了实现这一功能应用,很多新手朋友们,只能望洋兴叹啊,于是本人搜集整理一些实用技巧,晒出来和大家分享,希望可以帮助你们 javascript代码$.ajax({ url: 'query.php',……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1203浏览 2764个赞
JavaScript控制返回上一页并刷新的代码 一:JS 重载页面,本地刷新,返回上一页 <a href="javascript:history.go(-1)">返回上一页</a> <a hre……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2497浏览 130个赞
网站开发时经常需要在某个页面需要实现对大量图片的浏览;用javascript来实现一个图片浏览器,让用户无需等待过长的时间就能看到其他图片 网站开发时经常需要在某个页面需要实现对大量图片的浏览,如果考虑流量的话,大可以像pconline一样每个页面只显示一张图片,让用户每看一张图片就需……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3015浏览 2263个赞
现在流行的Twitter等微博客网站,有一个很好的用户体验,就是在文本框中输入文字的时候,会自动统计输入的字符,并显示用户还能输入的字符,在限制了140个字的微博客中,这样的小提示可以很好的增强用户体验 如果实现这种技术呢,我进行了一些研究,发现实现其实挺简单,几行代码就能完成输入字符……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1945浏览 2769个赞
response.setContentType(MIME)的作用是使客户端浏览器,区分不同种类的数据,并根据不同的MIME调用浏览器内不同的程序嵌入模块来处理相应的数据,本文详细介绍,需要了解的朋友可以参考下 response.setContentType(MIME)的作用是使客户端浏……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1559浏览 1663个赞
javascript小数四舍五入多种方法实现 用Javascript取float型小数点后两位,例22.127456取成22.13,如何做? 1. 最笨的办法 function get() { var s = 22.1274……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1965浏览 478个赞
全选与全取消在工作过程中经常会使用到,是因为它很方便,同时可以提高用户体验值,本文介绍如何使用javascript实现全选与全取消功能,需要了解的朋友可以参考下<html> <head> <meta http-equiv="Content-Type" content="text/html;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1280浏览 930个赞
javascript字符串循环匹配采用exec和String.match方法,对于exec必须开启全局匹配g标识才能获取所有匹配 // 需要提取这种数据 <td>2012-12-17</td><td>11:02 , 12:25 , 13:22 , 15:06 , 15:12 , 19:22 , 23:47</t……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1378浏览 840个赞
javascript常用技巧全套代码展示事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode eve……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2673浏览 1518个赞
DropDownList 控件用于创建下拉列表。DropDownList 控件中的每个可选项都是由 ListItem 元素定义的!该控件支持数据绑定 一:DropDownList 1.1 DropDownList绑定数据 1.1.1……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2395浏览 920个赞
这是一个兼容性比较好的复制文本到剪贴板的功能function copyToClipboard(txt) { if(window.clipboardData) { window.clipboardData.clearData(); window.clipboardData.setData(&q……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1667浏览 704个赞
JS获取URL参数,并存储在数组内返回function getUrlVars() { var map = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { map[key] = v……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2701浏览 1796个赞
这个数组包含了常见的MIME类型,如果你需要做文件下载,可以通过这个数组查看文件扩展名,判断是否可以下载$mime_types = array("323" => "text/h323","acx" => "application/internet-property-st……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1314浏览 332个赞
jQuery实现的手风琴菜单效果<script language="javascript"> $(document).ready(function() { $('.navchild').hide(); $('.navgrandchild').hide(); ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1199浏览 2368个赞
这段代码先获得元素父节点,然后获得其父节点的所有子节点,然后删除自己便是所有兄弟节点function siblings(elm) { var a = []; var p = elm.parentNode.children; for(var i =0,pl= p.length;i<pl;i++) { if(p[i] !== elm) a.……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1496浏览 1462个赞
JavaScript捕获鼠标滚轮事件/* * Author URL: http://adomas.org/javascript-mouse-wheel/ */ /** This is high-level function. * It must react to delta being more/less than zero. */fun……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2757浏览 925个赞
颜色转换rgb与16进制互转 使用方法:Color(12,34,56); Color(“#fff”) Color(“#defdcd”)//颜色转换 var Color = function() { if (!(this instanceof Color)) { var color ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1936浏览 2580个赞
禁止 asp、html、js 缓存的代码演示ASPResponse.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = "no-cache" Response.AddHeader &q……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1767浏览 2811个赞
jQuery分析RSS文档<script type="text/javascript" src="./js/jquery/jquery.js"></script><script type="text/javascript" src="./js/jFee……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1815浏览 600个赞
下面的JS代码演示了如何通过window.open方法打开一个弹出窗口,然后通过弹出窗口的句柄向父窗口输出信息的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2551浏览 1723个赞
让所有浏览器正确解析html标签的JS代码<!DOCTYPE html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <html> <style> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1255浏览 2674个赞
下面的JS代码演示了如何通过window.open弹出一个新的窗口,然后动态修改窗口大小<!DOCTYPE html><html><head><script>var w;function openwindow(){w=window.open('','',……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1588浏览 1826个赞
下面的代码演示了如何弹出一个空白窗口,然后向空白窗口内输出自定义内容<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('','','width=2……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2756浏览 839个赞
通过JS的window.open方法可以弹出窗口,设定不同的参数可以控制窗口的大小和样式等等,下面是一个详细的范例<!DOCTYPE html><html><head><script>function open_win(){window.open("http://www.75271.c……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2802浏览 1298个赞
这里使用了只带一个url作为参数的window.open函数用于在新窗口打开一个新网页<!DOCTYPE html><html><head><script>function open_win() {window.open("http://www.75271.com");}……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2143浏览 2223个赞
JavaScript通过Math.Min返回两个数中较小的那个<!DOCTYPE html><html><body><p id="demo">Click the button to return the lowest number of 5 and 10.</p>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1969浏览 1971个赞
JavaScript的Math对象带有一个max函数用于获取两个数字的较大数,下面的代码详细演示了max的用法<!DOCTYPE html><html><body><p id="demo">Click the button to return the highest number……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2930浏览 2861个赞
JavaScript的Math对象的random方法可以返回一个0-1之间随机数<!DOCTYPE html><html><body><p id="demo">Click the button to display a random number.</p><……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1205浏览 1846个赞
这个C#类封装了常用的JS客户端代码操作,包括弹出对话框、返回上一页,通过JS转向,弹出警告框并转向等。using System.Web;namespace DotNet.Utilities{ /// <summary> /// 客户端脚本输出 /// </summary> public c……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2381浏览 1745个赞
PHP,是英文超文本预处理语言Hypertext Preprocessor的缩写。PHP 是一种 HTML 内嵌式的语言,是一种在服务器端执行的嵌入HTML文档的脚本语言,语言的风格有类似于C语言,被广泛地运用。php文件用什么打开呢,其实php文件就是一个普通的文本文件,下面就php文件用什么打开?这个问题详细研究了一下。 ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1878浏览 2307个赞
Javascript 获取当前运行脚本文件所在的目录DirectoryUtility = { // function getCurrentDirectory: returns currentDirectory path // with a trailing backslash. getCurrentDirectory : fun……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2098浏览 2690个赞
JavaScript计算两个日期相差多少天,包含了闰年的计算//判断年份是否是闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1673浏览 1940个赞
JavaScript在网页上显示农历日期<html xmlns="http://www.w3.org/1999/xhtml" ><head ><title>JavaScript显示农历 - 75271.com</title></head><body>&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1629浏览 231个赞
JavaScript计算日期加上指定天数后的日期转自:http://blog.chinaunix.net/uid/257761.html//判断年份是否是闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2792浏览 1534个赞
JavaScript判断指定年份是否为闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{ return false;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1430浏览 2952个赞
下面的代码通过一个JS按钮控制打印机打印当前页面<!DOCTYPE html><html><head><script>function printpage(){window.print();}</script></head><body><in……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2209浏览 1989个赞
下面的JS代码通过window.open弹出一个新窗口,然后通过JS代码控制窗口移动到指定的位置<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',''……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2707浏览 859个赞
下面的JS代码通过window.open打开一个新的空白窗口,然后通过document.write方法向新窗口内输出内容,最后让新窗口获得焦点。<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2816浏览 1575个赞
JS中我们可以通过窗口对象的resizeBy方法动态修改窗口的大小<!DOCTYPE html><html><head><script>function resizeWindow(){top.resizeBy(100,100);}</script></head>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2080浏览 849个赞
下面的JS代码可以在网页中输出到大小的html标签文本<!DOCTYPE html><html><body><p>75271.com Click the button to loop from 1 to 6, to make HTML headings.</p><button……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1297浏览 139个赞
JS中通过window.open弹出的窗口,我们可以通过窗口对象的close方法来关闭,下面的代码演示了通过两个按钮分别打开和关闭窗口的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&qu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2433浏览 2204个赞
JavaScript中for循环使用代码演示,下面的代码演示了一个简单的for循环语句输出0到4的数字<!DOCTYPE html><html><body><p>75271.com,Click the button to loop through a block of code five times……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2671浏览 2842个赞
JavaScript定义一个简单的乘法函数下面的代码定义了一个myFunction函数,带有两个参数a和b,返回a*b的结果<!DOCTYPE html><html><body><p>75271.com,This example calls a function which performs a ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2299浏览 2154个赞
JavaScript函数可以通过return语句返回值,下面是一个详细的演示。<!DOCTYPE html><html><head><script>function myFunction(){return ("Hello Sharejs.com");}</scrip……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1369浏览 575个赞
下面的代码演示了JavaScript中如何定义一个带参数的函数,并点击按钮调用该函数<!DOCTYPE html><html><body><p>Click the button to call a function with arguments</p><button oncli……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1544浏览 2296个赞