zoukankan      html  css  js  c++  java
  • 打造自己的js类库

    代码
     //动态生成表单
        function getNewSubmitForm(sid){             //动态生成表单form

         
    var submitForm = document.createElement("FORM");

         document.body.appendChild(submitForm);

         submitForm.id
    =sid;                                  //表单的id

         submitForm.method 
    = "POST";                //表单的提交方式

         submitForm.target
    ="_blank";

         
    return submitForm;

        }
        
    //回车事件
         function enterIn(obj,evt){
          
    var evt=evt?evt:(window.event?window.event:null);//兼容IE和FF
          if (evt.keyCode==13){      
              baiduSearch();
        }
        }
        
        
    //加为收藏
    function AddFavorite(sURL, sTitle)
        {
            
    try
            {
                window.external.addFavorite(sURL, sTitle);
            }
            
    catch (e)
            {
                
    try
                {
                    window.sidebar.addPanel(sTitle, sURL, 
    "");
                }
                
    catch (e)
                {
                    alert(
    "加入收藏失败,请使用Ctrl+D进行添加");
                }
            }
        }
          
    //设为首页
       function Homepage() 
       {
            
    if (document.all) 
            {
                document.body.style.behavior 
    = 'url(#default#homepage)';

                document.body.setHomePage(window.location.href);
            }
            
    else if (window.sidebar) 
            {
                
    if (window.netscape) 
                {
                    
    try 
                    {
                        netscape.security.PrivilegeManager.enablePrivilege(
    "UniversalXPConnect");
                    }
                    
    catch (e) 
                    {
                        alert(
    "该操作被浏览器拒绝,如果想启用该功能,请在地址栏内输入 about:config,然后将项 signed.applets.codebase_principal_support 值该为true");
                       
    // history.go(-1);   //这里我用firefox测试的时候出错,我把它注释掉,改成 return false;
                       return false;
                    }
                }
                
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
                prefs.setCharPref(
    'browser.startup.homepage', window.location.href);
            }
        }   
  • 相关阅读:
    五秒原则,做一件事之前数 5 秒,1,2,3,4,5 立马去做。比如睡觉:数五秒,立马放下手机,闭眼。
    Perl 安装 JSON 包
    Perl: hash散列转换为Json报错集, perl.c,v $$Revision: 4.0.1.8 $$Date: 1993/02/05 19:39:30 $
    叫法: 表名 表字段名 定义每个表字段
    失误1: 把i放到循环体内部,i++失效
    沈南鹏@《遇见大咖》: A轮没投,投了8个月以后就证明了张一鸣是对了,在美国都没有张一鸣这种模式
    xshell通过xftp传输Windows文件到Linux:在输入put后,再摁 TAB 键,可显示当前文件夹的文件
    LeetCode84 Largest Rectangle in Histogram
    全排列问题及其引申问题
    LeetCode Weekly Contest 8
  • 原文地址:https://www.cnblogs.com/dajiang02/p/1902074.html
Copyright © 2011-2022 走看看