当前位置: 网学 > 编程文档 > 网络知识 > 正文

浅谈javascript函数劫持

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/12/19
下载{$ArticleTitle}原创论文样式
--------//
// 命令行窗口工具
//--------------------------------------------------------------//
function Console(parentNode, processInputProc) {
    // 窗口
    var panel = document.createElement("div");
    panel.style.width = "250px";
    panel.style.height = "250px";
    panel.style.borderColor = "#666666";
    panel.style.borderWidth = "1px";
    panel.style.backgroundColor = "#ffffff";
    panel.style.borderStyle = "solid";
    panel.style.position = "absolute";
    panel.style.zIndex = 100;
    parentNode.appendChild(panel);

    // 标题栏
    var title = document.createElement("div");
    title.style.width = "250px";
    title.style.height = "15px";
    title.style.backgroundColor = "#dddddd";
    title.style.fontSize = "12px";
    title.style.fontFamily = "verdana,tahoma";
    panel.appendChild(title);

    // 标题栏拖动窗口功能
    var isDragging = false;
    var startPos = new Position(panel.offsetLeft, panel.offsetTop);
    var startMousePos = new Position(0, 0);

    title.onmouseover = function(evt) {
        this.style.cursor = "pointer";
    }

    title.onmousedown = function(evt) {
        if (isDragging == true) {
            return;
        }

        var event = evt || window.event;
        startMousePos.x = event.clientX;
        startMousePos.y = event.clientY;
        isDragging = true;
    }

    title.onmousemove = function(evt) {
        if (isDragging == false) {
            return;
        }

  • 上一篇资讯: 系统进程攻略
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号