jquery 按钮绑定事件<script type="text/javascript">// 方法一$('#button').click(function () {// ajax});// 方法二$("#button").bind("click",function () {// ajax});// 方法三$("#button").unbind().bind("click
html table 设置表格背景图片,背景色
<table width="600px" background="../images/test.jpg"><tr><td>单元格</td></tr>
</table><table style="background:#ffffff">
</table><table style="background:url('../ima
js 判断是否为手机端、移动端访问
<!DOCTYPE html><html>
<head><meta charset="utf-8" /><script type="text/javascript" src="/js/jquery-1.4.1.min.js"></script><script type="text/javascript">(function () {va
HTML 5
<!DOCTYPE html>HTML 4.01 Strict 该 DTD 包含所有 HTML 元素和属性,但不包括展示性的和弃用的元素(比如 font)。不允许框架集(Framesets)。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http:/
css 控制内容字母自动转换大小写, 控制大小写字母自动转换
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w
js 打印功能打印测试function printDocument() {document.all.btnPrint.style.display = 'none';window.print();document.all.btnPrint.style.display = '';}打印测试1打印测试2打印测试3打印
css 设置图片平铺
background:url('images/1.gif') no-repeat; /*不平铺*/
background:url('images/2.gif') repeat-x; /*横向平铺*/
background:url('images/3.gif') repeat-y; /*纵向平铺*/
js 获取 url 参数//var url = parent.location.search;var url = " http://www.abc.com.cn/index.asp?aa=1&bb=2&cc=3";var request = new Object();if (url.indexOf("?") != -1)// 参数前的地址{var str = url.subs
html实现JavaScript实现// 以下方式直接跳转window.location.href = 'https://www.abc.com/';// 以下方式定时跳转setTimeout("javascript:location.href='https://www.abc.com/'", 5000);
js 字母大小写转换的方法//js字母大小写转换方法://1、转换成大写:toUpperCase()//2、转换成小写:toLowerCase()var str1="aBcD";str1=str1.toUpperCase();alert(str1);var str2="aBcD";str2=str2.toLowerCase();al
js 设置服务端按钮控件(ASP.NET)不可用window.onload = function () {// 设置按钮不可用document.getElementById('').disabled = true;}
js 设置页面标题 titlewindow.onload = function (){window.document.title = "新标题"; };
jquery 按钮禁用, button disabled$(document).ready(function () {// 按钮不可用, 禁用$('#btnLogin').attr('disabled', 'true'); //// 按钮可用, 启用//$('#btnLogin').removeAttr('disabled'); });
js 按钮禁用, button disabledwindow.onload = function () {// 按钮不可用, 禁用document.getElementById('btnLogin').disabled=true;//// 按钮可用, 启用//document.getElementById('btnLogin').disabled=false;}
jquery input 赋值$(document).ready(function () {$('#show').val('input赋值内容');});
jquery div 赋值$(document).ready(function () {$('#show').html('div赋值内容');});
jquery span 赋值$(document).ready(function () {$('#show').html('span赋值内容');});
js 判断字符串, 对象是否为空function test() {var username = $("#username").val();// 方法一if(username){alert("对象不为空!");}// 或者if (typeof username == "undefined" || username == null || username ==
js input 赋值window.onload = function () {var show = document.getElementById('show');show.value = 'input赋值内容';}
js div 赋值window.onload = function () {var show = document.getElementById('show');show.innerHTML = 'div赋值内容';}
js span 赋值window.onload = function () {var show = document.getElementById('show');show.innerText = 'span赋值内容';}
js 自动执行, setTimeout(), setInterval() 使用//setTimeout(表达式,时间):页面载入后,经过指定毫秒值后执行指定表达式,只执行一次 //setInterval(表达式,时间):页面载入后,每经过指定毫秒值后执行指定表达式
js 打开新窗口, 打开新页面
// 打开新窗口
window.open('http://www.abc.com');
// 当前页面打开新窗口
window.location.href = 'http://www.abc.com';