位置 : 首页 > Web前端
jquery 按钮绑定事件
jquery 按钮绑定事件<script type="text/javascript">// 方法一$('#button').click(function () {// ajax});// 方法二$("#button").bind("click",function () {// ajax});// 方法三$("#button").unbind().bind("click
Jarvis 阅读:1488
html table 设置表格背景图片,背景色
html table 设置表格背景图片,背景色 <table width="600px" background="../images/test.jpg"><tr><td>单元格</td></tr> </table><table style="background:#ffffff"> </table><table style="background:url('../ima
Jarvis 阅读:2802
js 判断是否为手机端、移动端访问
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
Jarvis 阅读:1660
html 常用的 DOCTYPE 声明
HTML 5 <!DOCTYPE html>HTML 4.01 Strict 该 DTD 包含所有 HTML 元素和属性,但不包括展示性的和弃用的元素(比如 font)。不允许框架集(Framesets)。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http:/
Jarvis 阅读:1471
css 控制内容字母自动转换大小写, 控制大小写字母自动转换
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
Jarvis 阅读:1544
css 去掉a标签超链接的虚线框的方法, 何去除超链接点击时的虚线?
设置css样式a{outline:none}
Jarvis 阅读:1459
js 打印功能
js 打印功能打印测试function printDocument() {document.all.btnPrint.style.display = 'none';window.print();document.all.btnPrint.style.display = '';}打印测试1打印测试2打印测试3打印
Jarvis 阅读:2118
css 设置图片平铺
css 设置图片平铺 background:url('images/1.gif') no-repeat; /*不平铺*/ background:url('images/2.gif') repeat-x; /*横向平铺*/ background:url('images/3.gif') repeat-y; /*纵向平铺*/
Jarvis 阅读:1672
js 获取 url 参数
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
Jarvis 阅读:1448
html 返回页面顶部
html 返回页面顶部 返回顶部
Jarvis 阅读:1376
html 页面跳转, 重定向, 新窗口
html实现JavaScript实现// 以下方式直接跳转window.location.href = 'https://www.abc.com/';// 以下方式定时跳转setTimeout("javascript:location.href='https://www.abc.com/'", 5000);
Jarvis 阅读:1328
js 关闭、退出当前窗体
js 关闭、退出当前窗体无标题 1
Jarvis 阅读:1317
js 刷新当前页面
js 刷新当前页面 刷新当前页面
Jarvis 阅读:1182
js 字母大小写转换的方法
js 字母大小写转换的方法//js字母大小写转换方法://1、转换成大写:toUpperCase()//2、转换成小写:toLowerCase()var str1="aBcD";str1=str1.toUpperCase();alert(str1);var str2="aBcD";str2=str2.toLowerCase();al
Jarvis 阅读:1113
js 设置服务端按钮控件(ASP.NET)不可用
js 设置服务端按钮控件(ASP.NET)不可用window.onload = function () {// 设置按钮不可用document.getElementById('').disabled = true;}
Jarvis 阅读:1303
js 设置页面标题 title
js 设置页面标题 titlewindow.onload = function (){window.document.title = "新标题"; };
Jarvis 阅读:1576
jquery 按钮禁用, button disabled
jquery 按钮禁用, button disabled$(document).ready(function () {// 按钮不可用, 禁用$('#btnLogin').attr('disabled', 'true'); //// 按钮可用, 启用//$('#btnLogin').removeAttr('disabled'); });
Jarvis 阅读:1330
js 按钮禁用, button disabled
js 按钮禁用, button disabledwindow.onload = function () {// 按钮不可用, 禁用document.getElementById('btnLogin').disabled=true;//// 按钮可用, 启用//document.getElementById('btnLogin').disabled=false;}
Jarvis 阅读:1341
jquery input 赋值
jquery input 赋值$(document).ready(function () {$('#show').val('input赋值内容');});
Jarvis 阅读:1320
jquery div 赋值
jquery div 赋值$(document).ready(function () {$('#show').html('div赋值内容');});
Jarvis 阅读:1294
jquery span 赋值
jquery span 赋值$(document).ready(function () {$('#show').html('span赋值内容');});
Jarvis 阅读:1266
js 判断字符串, 对象是否为空
js 判断字符串, 对象是否为空function test() {var username = $("#username").val();// 方法一if(username){alert("对象不为空!");}// 或者if (typeof username == "undefined" || username == null || username ==
Jarvis 阅读:1280
js input 赋值
js input 赋值window.onload = function () {var show = document.getElementById('show');show.value = 'input赋值内容';}
Jarvis 阅读:1195
js div 赋值
js div 赋值window.onload = function () {var show = document.getElementById('show');show.innerHTML = 'div赋值内容';}
Jarvis 阅读:1465
js span 赋值
js span 赋值window.onload = function () {var show = document.getElementById('show');show.innerText = 'span赋值内容';}
Jarvis 阅读:1440
js 自动执行, setTimeout(), setInterval() 使用
js 自动执行, setTimeout(), setInterval() 使用//setTimeout(表达式,时间):页面载入后,经过指定毫秒值后执行指定表达式,只执行一次 //setInterval(表达式,时间):页面载入后,每经过指定毫秒值后执行指定表达式
Jarvis 阅读:1344
js 打开新窗口, 打开新页面
js 打开新窗口, 打开新页面 // 打开新窗口 window.open('http://www.abc.com'); // 当前页面打开新窗口 window.location.href = 'http://www.abc.com';
Jarvis 阅读:1543