网页设计中常用的javascript脚本有哪些

 我来答
姣过手飘找人1Q
2018-05-13 · TA获得超过1904个赞
知道大有可为答主
回答量:2466
采纳率:70%
帮助的人:353万
展开全部
  • $(“a[href=’#top’]”).click(function() {   

  • $(“html, body”).animate({ scrollTop: 0 }, “slow”);   

  • return false;   

  • });  

  • 复制以上代码放在网页的JavaScript标签中,然后在底部添加一个id为“top”的链接就会自动返回到顶部了。

    2、复制表单顶部标题到底部:

  • var $tfoot = $(‘<tfoot></tfoot>’);   

  • $($(‘thead’).clone(true, true).children().get().reverse()).each(function(){   

  • $tfoot.append($(this));   

  • });   

  • $tfoot.insertAfter(‘table thead’);  

  • 3、载入额外的内容:

  • $(“#content”).load(“somefile.html”, function(response, status, xhr) {   

  • // error handling   

  • if(status == “error”) {   

  • $(“#content”).html(“An error occured: “ + xhr.status + ” “ + xhr.statusText);   

  • }   

  • });  

  • 有时候需要为单独的一个div层从外部载入一些额外的数据内容,下面这段短码将会非常有用。

    4、设置多列层等高:

  • var maxheight = 0;   

  • $(“div.col”).each(function(){   

  • if($(this).height() > maxheight) { maxheight = $(this).height(); }   

  • });   

  • $(“div.col”).height(maxheight);  

  • 在一些布局设计中,有时候需要让两个div层高度相当,下面是采用js方法实现的原理(需要等高的div层设置class为”col”)。

    5、定时刷新部分页面的内容:

  • setInterval(function() {   

  • $(“#refresh”).load(location.href+” #refresh>*”,“”);   

  • }, 10000); // milliseconds to wait  

  • 如果在你的网页上需要定时的刷新一些内容,例如微博消息或者实况转播,为了不让用户繁琐的刷新整个页面,可以采用下面这段代码来定时刷新部分页面内容。

    6、预载入图像:

  • $.preloadImages = function() {   

  • for(var i = 0; i<arguments.length; i++) {   

  • $(“<img />”).attr(“src”, arguments[i]);   

  • }   

  • }   

  • $(document).ready(function() {   

  • $.preloadImages(“hoverimage1.jpg”,“hoverimage2.jpg”);   

  • });  

  • 有些网站页面打开图像都未载入完毕,还要苦苦等待。下面这段代码实现图像都载入完毕后再打开整个网页。

    7、测试密码强度:
    这个比较给力,现在很多网站注册的时候都加入了密码强度测试功能,以下代码也简单提供了密码强度测试功能。

    HTML代码部分:

  • <input type=“password” name=“pass” id=“pass” />  

  • <span id=“passstrength”></span>  

  • JavaScript脚本代码:

  • $(‘#pass’).keyup(function(e) {   

  • var strongRegex = new RegExp(“^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$”, “g”);   

  • var mediumRegex = new RegExp(“^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$”, “g”);   

  • var enoughRegex = new RegExp(“(?=.{6,}).*”, “g”);   

  • if (false == enoughRegex.test($(this).val())) {   

  • $(‘#passstrength’).html(‘More Characters’);   

  • } else if (strongRegex.test($(this).val())) {   

  • $(‘#passstrength’).className = ‘ok’;   

  • $(‘#passstrength’).html(‘Strong!’);   

  • } else if (mediumRegex.test($(this).val())) {   

  • $(‘#passstrength’).className = ‘alert’;   

  • $(‘#passstrength’).html(‘Medium!’);   

  • } else {   

  • $(‘#passstrength’).className = ‘error’;   

  • $(‘#passstrength’).html(‘Weak!’);   

  • }   

  • return true;   

  • });  

  • 8、自适应缩放图像:
    有时候网站上传的图像需要填充整个指定区域,但是有时候图像比例并不恰好合适,缩放后效果不好。一下代码就实现了检测图像比例然后做适当的缩放功能。

  • $(window).bind(“load”, function() {   

  • // IMAGE RESIZE   

  • $(‘#product_cat_list img’).each(function() {   

  • var maxWidth = 120;   

  • var maxHeight = 120;   

  • var ratio = 0;   

  • var width = $(this).width();   

  • var height = $(this).height();   

  • if(width > maxWidth){   

  • ratio = maxWidth / width;   

  • $(this).css(“width”, maxWidth);   

  • $(this).css(“height”, height * ratio);   

  • height = height * ratio;   

  • }   

  • var width = $(this).width();   

  • var height = $(this).height();   

  • if(height > maxHeight){   

  • ratio = maxHeight / height;   

  • $(this).css(“height”, maxHeight);   

  • $(this).css(“width”, width * ratio);   

  • width = width * ratio;   

  • }   

  • });   

  • //$(“#contentpage img”).show();   

  • // IMAGE RESIZE   

  • });  

  • 9、自动载入内容:
    现在很多网站,特别是微博,都不需要翻页的按钮了,直接下拉后会自动载入内容。下面的脚本就是简单实现了个这种效果。

  • var loading = false;   

  • $(window).scroll(function(){   

  • if((($(window).scrollTop()+$(window).height())+250)>=$(document).height()){   

  • if(loading == false){   

  • loading = true;   

  • $(‘#loadingbar’).css(“display”,“block”);   

  • $.get(“load.php?start=”+$(‘#loaded_max’).val(), function(loaded){   

  • $(‘body’).append(loaded);   

  • $(‘#loaded_max’).val(parseInt($(‘#loaded_max’).val())+50);   

  • $(‘#loadingbar’).css(“display”,“none”);   

  • loading = false;   

  • });   

  • }   

  • }   

  • });   

  • $(document).ready(function() {   

  • $(‘#loaded_max’).val(50);   

  • });  

淡淡的雷人生活
2019-01-27 · TA获得超过2399个赞
知道小有建树答主
回答量:440
采纳率:87%
帮助的人:71.3万
展开全部
事件源对象
event.srcElement.tagName
event.srcElement.type
捕获释放
event.srcElement.setCapture();
event.srcElement.releaseCapture();
事件按键
event.keyCode
event.shiftKey
event.altKey
event.ctrlKey
事件返回值
event.returnValue
鼠标位置
event.x
event.y
窗体活动元素
document.activeElement
绑定事件
document.captureEvents(Event.KEYDOWN);
访问窗体元素
document.all("txt").focus();
document.all("txt").select();
窗体命令
document.execCommand
窗体COOKIE
document.cookie
菜单事件
document.oncontextmenu
创建元素
document.createElement("SPAN");
根据鼠标获得元素:
document.elementFromPoint(event.x,event.y).tagName=="TD
document.elementFromPoint(event.x,event.y).appendChild(ms)
窗体图片
document.images[索引]
窗体事件绑定
document.onmousedown=scrollwindow;
元素
document.窗体.elements[索引]
对象绑定事件
document.all.xxx.detachEvent('onclick',a);
插件数目
navigator.plugins
取变量类型
typeof($js_libpath) == "undefined"
下拉框
下拉框.options[索引]
下拉框.options.length
查找对象
document.getElementsByName("r1");
document.getElementById(id);
定时
timer=setInterval('scrollwindow()',delay);
clearInterval(timer);
UNCODE编码
escape() ,unescape
父对象
obj.parentElement(dhtml)
obj.parentNode(dom)
交换表的行
TableID.moveRow(2,1)
替换CSS
document.all.csss.href = "a.css";
并排显示
display:inline
隐藏焦点
hidefocus=true
根据宽度换行
style="word-break:break-all"
自动刷新
<meta HTTP-EQUIV="refresh" CONTENT="8;URL=http://c98.yeah.net">
简单邮件
<a href="mailto:aaa@bbb.com?subject=ccc&body=xxxyyy">
快速转到位置
obj.scrollIntoView(true)

<a name="first">
<a href="#first">anchors</a>
网页传递参数
location.search();
可编辑
obj.contenteditable=true
执行菜单命令
obj.execCommand
双字节字符
/[^\x00-\xff]/
汉字
/[\u4e00-\u9fa5]/
让英文字符串超出表格宽度自动换行
word-wrap: break-word; word-break: break-all;
透明背景
<IFRAME src="1.htm" width=300 height=180 allowtransparency></iframe>
获得style内容
obj.style.cssText
HTML标签
document.documentElement.innerHTML
第一个style标签
document.styleSheets[0]
style标签里的第一个样式
document.styleSheets[0].rules[0]
防止点击空链接时,页面往往重置到页首端。
<a href="BLOCKED SCRIPTfunction()">word</a>
上一网页源
asp:
request.servervariables("HTTP_REFERER")
BLOCKED SCRIPT
document.referrer
释放内存
CollectGarbage();
禁止右键
document.oncontextmenu = function() { return false;}
禁止保存
<noscript><iframe src="*.htm"></iframe></noscript>
禁止选取<body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false"onmouseup="document.selection.empty()>
禁止粘贴
<input type=text onpaste="return false">
地址栏图标
<link rel="Shortcut Icon" href="favicon.ico">
favicon.ico 名字最好不变16*16的16色,放虚拟目录根目录下
收藏栏图标
<link rel="Bookmark" href="favicon.ico">
查看源码
<input type=button value=查看网页源代码 onclick="window.location = 'view-source:'+ 'http://www.csdn.net/'">
关闭输入法
<input style="ime-mode:disabled">
自动全选
<input type=text name=text1 value="123" onfocus="this.select()">
ENTER键可以让光标移到下一个输入框
<input onkeydown="if(event.keyCode==13)event.keyCode=9">
文本框的默认值
<input type=text value="123" onfocus="alert(this.defaultValue)">
title换行
obj.title = "123 sdfs "
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式