JS积累

1. <a>标签"加入收藏",兼容IE,FireFox等

function bookmarksite() {
            if (window.sidebar) {
                // Mozilla Firefox Bookmark
                window.sidebar.addPanel(document.title, window.location.href, ‘‘);
            }
            else if (window.external && (‘AddFavorite‘ in window.external)) {
                // IE Favorite
                window.external.AddFavorite(location.href, document.title);
            } else if (window.opera && window.print) {
                // Opera Hotlist
                this.title = document.title;
                return true;
            } else {
                // webkit - safari/chrome
                alert(‘Press ‘ + (navigator.userAgent.toLowerCase().indexOf(‘mac‘) != -1 ? ‘Command/Cmd‘ : ‘CTRL‘) + ‘ + D to bookmark this page.‘);
            }
        }
        //加入收藏
        function bookmarksite(title, url) {
            if (window.sidebar) // firefox
                window.sidebar.addPanel(title, url, "");
            else
                if (window.opera && window.print) { // opera
                    var elem = document.createElement(‘a‘);
                    elem.setAttribute(‘href‘, url);
                    elem.setAttribute(‘title‘, title);
                    elem.setAttribute(‘rel‘, ‘sidebar‘);
                    elem.click();
                }
                else
                    if (document.all)// ie
                        window.external.AddFavorite(url, title);
            }

时间: 2024-12-09 16:57:10

JS积累的相关文章

常用js积累(长期更新)

1,点击目标区域以外隐藏,运用场景:点击遮罩层,弹层关闭. // 点击目标区域以外隐藏 $(document).on("click", function (event) { var e = window.event || e; obj = $(e.srcElement || e.target); if ($(obj).is(selector)) { // console.log('内部区域'); // do something } else { // console.log('你的点击

js积累点

1 window.opener.parent.frames['taskAnswerInfoForm'].location=newUrl;//可以使该frame的页面跳转.不需要再写xxx.location.reload();操作 原文地址:https://www.cnblogs.com/mySummer/p/8111591.html

前端学习书籍推荐

纯属转载,大致看了下,文章里推荐的书都不错,设计前端的常见内容(html.css.js.jq),当然,前端不仅仅包含这几个方面.文章如下(链接均指向豆瓣的书评): ----------------------------------- 时常遇到朋友问我前端学习该如何学习, 看哪些书藉. 自己也希望将自己的一些学习心得与经验传教于初学者. 抱着对初学者负责的态度, 如何学习前端, 我还需要在心成有个成熟的底稿后再来写, 本文先以自己学习过程中看过的书为基础, 总结一下前端学习各个阶段书籍的选择.

点滴积累【JS】---JS实现仿百度模糊搜索效果

效果: HTML代码: 1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InputText.aspx.cs" Inherits="DropDownLikeBaiDu.InputText" %> 2 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN&qu

点滴积累【JS】---JQuery实现条形统计图,适用于选择题等统计

效果: 思路:前台JS实现动态数据效果,后台可以拼接字符串或者用JSON加载数据 代码: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="tiao.aspx.cs" Inherits="qiantaoflash.tiao" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transit

JS(JavaScript)脚本库的积累

在现在互联网盛行的时代,使得B/S架构飞速发展.曾经在大学的时候我一直都梦想着毕业后要找一个像腾讯这样大企业做C/S方面的开发工作(其实现在腾讯也有很多B/S软件),因为C/S体验度非常高,感觉非常好.但是此时此刻,我却没有这样的想法了.这是为什么呢?对于有经验的软件工程师都很清楚,B/S的程序部署在服务器,客户端只需要浏览器即可使用,而C/S需要客户在终端安装客户端程序,所以B/S在维护和升级方面的简易性上,无疑有独有优势,而且对客户端的硬件要求相对于C/S软件一般都要低.B/S当然它也有它的

最近积累的JS 东西,分享一下

js 关闭页面 var browserName=navigator.appName; if (browserName=="Netscape") { window.open('','_parent',''); window.close(); } else if (browserName=="Microsoft Internet Explorer") { window.opener = "whocares"; window.close(); } Js

JS实战 &#183; 实践积累点滴杂烩

onmouseover : 鼠标进入 onmouseout : 鼠标离开 onfocus:得到焦点 表单提交执行JS代码,有两种常用方式. 一:在局部(比如按钮定义处)用onclick="return Check()"; 二:在表单form处用onsubmit="retnrn Check(this)"; 表单提交验证:灵活运用returnValue 取消超链接的效果:<a href="javascript:void(0)"></

点滴积累【JS】---JS实现动画闪烁效果

效果: 思路:首先获得图片数组,然后做JS定时用setTimeout和setInterval在用显示隐藏实现闪烁效果. 代码: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/