javascript常用技巧全套代码展示事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode eve……继续阅读 » 4年前 (2021-03-20) 1973浏览 196个赞
DropDownList 控件用于创建下拉列表。DropDownList 控件中的每个可选项都是由 ListItem 元素定义的!该控件支持数据绑定 一:DropDownList 1.1 DropDownList绑定数据 1.1.1……继续阅读 » 4年前 (2021-03-20) 3078浏览 2992个赞
这是一个兼容性比较好的复制文本到剪贴板的功能function copyToClipboard(txt) { if(window.clipboardData) { window.clipboardData.clearData(); window.clipboardData.setData(&q……继续阅读 » 4年前 (2021-03-20) 1374浏览 2237个赞
JS获取URL参数,并存储在数组内返回function getUrlVars() { var map = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { map[key] = v……继续阅读 » 4年前 (2021-03-20) 1831浏览 1133个赞
这个数组包含了常见的MIME类型,如果你需要做文件下载,可以通过这个数组查看文件扩展名,判断是否可以下载$mime_types = array("323" => "text/h323","acx" => "application/internet-property-st……继续阅读 » 4年前 (2021-03-20) 2439浏览 969个赞
jQuery实现的手风琴菜单效果<script language="javascript"> $(document).ready(function() { $('.navchild').hide(); $('.navgrandchild').hide(); ……继续阅读 » 4年前 (2021-03-20) 1432浏览 1167个赞
这段代码先获得元素父节点,然后获得其父节点的所有子节点,然后删除自己便是所有兄弟节点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) 2861浏览 1223个赞
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) 2201浏览 303个赞
颜色转换rgb与16进制互转 使用方法:Color(12,34,56); Color(“#fff”) Color(“#defdcd”)//颜色转换 var Color = function() { if (!(this instanceof Color)) { var color ……继续阅读 » 4年前 (2021-03-20) 2844浏览 1976个赞
禁止 asp、html、js 缓存的代码演示ASPResponse.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = "no-cache" Response.AddHeader &q……继续阅读 » 4年前 (2021-03-20) 2806浏览 619个赞
jQuery分析RSS文档<script type="text/javascript" src="./js/jquery/jquery.js"></script><script type="text/javascript" src="./js/jFee……继续阅读 » 4年前 (2021-03-20) 2300浏览 1868个赞
下面的JS代码演示了如何通过window.open方法打开一个弹出窗口,然后通过弹出窗口的句柄向父窗口输出信息的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',……继续阅读 » 4年前 (2021-03-20) 3125浏览 1481个赞
让所有浏览器正确解析html标签的JS代码<!DOCTYPE html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <html> <style> ……继续阅读 » 4年前 (2021-03-20) 2652浏览 2259个赞
下面的JS代码演示了如何通过window.open弹出一个新的窗口,然后动态修改窗口大小<!DOCTYPE html><html><head><script>var w;function openwindow(){w=window.open('','',……继续阅读 » 4年前 (2021-03-20) 3030浏览 1781个赞
下面的代码演示了如何弹出一个空白窗口,然后向空白窗口内输出自定义内容<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('','','width=2……继续阅读 » 4年前 (2021-03-20) 2761浏览 1171个赞
通过JS的window.open方法可以弹出窗口,设定不同的参数可以控制窗口的大小和样式等等,下面是一个详细的范例<!DOCTYPE html><html><head><script>function open_win(){window.open("http://www.75271.c……继续阅读 » 4年前 (2021-03-20) 2977浏览 1632个赞
这里使用了只带一个url作为参数的window.open函数用于在新窗口打开一个新网页<!DOCTYPE html><html><head><script>function open_win() {window.open("http://www.75271.com");}……继续阅读 » 4年前 (2021-03-20) 1613浏览 1245个赞
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) 1929浏览 2993个赞
JavaScript的Math对象带有一个max函数用于获取两个数字的较大数,下面的代码详细演示了max的用法<!DOCTYPE html><html><body><p id="demo">Click the button to return the highest number……继续阅读 » 4年前 (2021-03-20) 2018浏览 677个赞
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) 1376浏览 2417个赞
这个C#类封装了常用的JS客户端代码操作,包括弹出对话框、返回上一页,通过JS转向,弹出警告框并转向等。using System.Web;namespace DotNet.Utilities{ /// <summary> /// 客户端脚本输出 /// </summary> public c……继续阅读 » 4年前 (2021-03-20) 2479浏览 2257个赞
PHP,是英文超文本预处理语言Hypertext Preprocessor的缩写。PHP 是一种 HTML 内嵌式的语言,是一种在服务器端执行的嵌入HTML文档的脚本语言,语言的风格有类似于C语言,被广泛地运用。php文件用什么打开呢,其实php文件就是一个普通的文本文件,下面就php文件用什么打开?这个问题详细研究了一下。 ……继续阅读 » 4年前 (2021-03-20) 2909浏览 792个赞
Javascript 获取当前运行脚本文件所在的目录DirectoryUtility = { // function getCurrentDirectory: returns currentDirectory path // with a trailing backslash. getCurrentDirectory : fun……继续阅读 » 4年前 (2021-03-20) 1409浏览 1469个赞
JavaScript计算两个日期相差多少天,包含了闰年的计算//判断年份是否是闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{……继续阅读 » 4年前 (2021-03-20) 1885浏览 2353个赞
JavaScript在网页上显示农历日期<html xmlns="http://www.w3.org/1999/xhtml" ><head ><title>JavaScript显示农历 - 75271.com</title></head><body>&l……继续阅读 » 4年前 (2021-03-20) 1459浏览 729个赞
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) 2917浏览 1102个赞
JavaScript判断指定年份是否为闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{ return false;……继续阅读 » 4年前 (2021-03-20) 1594浏览 2652个赞
下面的代码通过一个JS按钮控制打印机打印当前页面<!DOCTYPE html><html><head><script>function printpage(){window.print();}</script></head><body><in……继续阅读 » 4年前 (2021-03-20) 1389浏览 940个赞
下面的JS代码通过window.open弹出一个新窗口,然后通过JS代码控制窗口移动到指定的位置<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',''……继续阅读 » 4年前 (2021-03-20) 1789浏览 2024个赞
下面的JS代码通过window.open打开一个新的空白窗口,然后通过document.write方法向新窗口内输出内容,最后让新窗口获得焦点。<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&……继续阅读 » 4年前 (2021-03-20) 2575浏览 1847个赞
JS中我们可以通过窗口对象的resizeBy方法动态修改窗口的大小<!DOCTYPE html><html><head><script>function resizeWindow(){top.resizeBy(100,100);}</script></head>……继续阅读 » 4年前 (2021-03-20) 1278浏览 1406个赞
下面的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) 2346浏览 2790个赞
JS中通过window.open弹出的窗口,我们可以通过窗口对象的close方法来关闭,下面的代码演示了通过两个按钮分别打开和关闭窗口的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&qu……继续阅读 » 4年前 (2021-03-20) 2733浏览 1114个赞
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) 1790浏览 1978个赞
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) 2167浏览 520个赞
JavaScript函数可以通过return语句返回值,下面是一个详细的演示。<!DOCTYPE html><html><head><script>function myFunction(){return ("Hello Sharejs.com");}</scrip……继续阅读 » 4年前 (2021-03-20) 2517浏览 1499个赞
下面的代码演示了JavaScript中如何定义一个带参数的函数,并点击按钮调用该函数<!DOCTYPE html><html><body><p>Click the button to call a function with arguments</p><button oncli……继续阅读 » 4年前 (2021-03-20) 1430浏览 613个赞
asp.net 中 ashx的用法演示 网页代码<mce:script type="text/javascript"><!-- $(function () { $("#name"……继续阅读 » 4年前 (2021-03-20) 2862浏览 2578个赞
下拉框只读此功能并不是默认的,需要手动操作下,本文介绍用JS和C#分别在前端和后端控制下拉框为只读的方法 前端JavaScript的方法<HTML> <HEAD> <TITLE>下拉框模拟只读</TITLE> <scrip……继续阅读 » 4年前 (2021-03-20) 2520浏览 282个赞
JS 仿google、百度搜索框输入信息智能提示的实现<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">&l……继续阅读 » 4年前 (2021-03-20) 2373浏览 180个赞
JavaScript模仿C#的StringBuilder/***************************************************************** * Stringbuilder Class - emulates the C#/VB.NET stringbuilder * @constructor ***……继续阅读 » 4年前 (2021-03-20) 1812浏览 2315个赞
如果你已经有较多的面向对象开发经验,跳过以下这两步 第一步:掌握一门.NET面向对象语言第二步:对.NET Framework类库有一定的了解;在具备了OO基础之后,以下是具体的学习ASP.NET技术步骤 如果你已经有较多的面向对象开发经验,跳过以下这两步: 第一步 ……继续阅读 » 4年前 (2021-03-20) 2770浏览 2061个赞
C#中的WebBrowser控件的属性、方法及操作演示代码作者:txw1958原文:http://www.cnblogs.com/txw1958/archive/2012/09/24/CSharp-WebBrowser.html 0、常用方法Navigate(string urlS……继续阅读 » 4年前 (2021-03-20) 2910浏览 1667个赞
模仿新浪微博长URL转短地址的方法转自:http://blog.csdn.net/5653325/article/details/6639829 一、前台判断用户输入URL的JS代码如下。function CheckInput() { var $txtLength = ……继续阅读 » 4年前 (2021-03-20) 1545浏览 2836个赞
C# WebService结合jQuery实现无刷新翻页 1,首先创建数据库、表Article,字段ArticleId,Title前台代码<%@ Page Language="C#" AutoEventWireup="true" %&g……继续阅读 » 4年前 (2021-03-20) 2441浏览 1703个赞