使用jquery在iframe中捕获鼠标右键单击事件

时间:2012-06-27 09:32:19

标签: javascript jquery asp.net iframe

我需要使用任何javascript或jquery代码在asp.net中的iframe中捕获鼠标右键单击事件。

下面是我到目前为止尝试过的代码。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Detect IFrame Clicks</title>

<script type="text/javascript" language="javascript" src="JScript/jquery-1.7.1.js"></script>

<script type="text/javascript" language="javascript" src="JScript/jquery.ui.core.js"></script>

<script type="text/javascript" language="javascript" src="JScript/jquery.ui.widget.js"></script>

<script type="text/javascript" language="javascript" src="JScript/jquery.ui.mouse.js"></script>

<script type="text/javascript">        
    document.onmousedown = onMousebtClick
    var isOverIFrame = false;
    $(document).ready(function() {
        function processMouseOut() {
            isOverIFrame = false;
            top.focus();
        }

        function processMouseOver() {
            isOverIFrame = true;
        }

        function processIFrameClick() {
            if (isOverIFrame) {
                log("CLICK << detected. ");
                onMousebtClick();
            }
        }

        function log(message) {
            var console = document.getElementById("console");
            var text = console.value;
            text = text + message + "\n";
            console.value = text;
        }

        function attachOnloadEvent(func, obj) {
            if (typeof window.addEventListener != 'undefined') {
                window.addEventListener('load', func, false);
            } else if (typeof document.addEventListener != 'undefined') {
                document.addEventListener('load', func, false);
            } else if (typeof window.attachEvent != 'undefined') {
                window.attachEvent('onload', func);
            } else {
                if (typeof window.onload == 'function') {
                    var oldonload = onload;
                    window.onload = function() {
                        oldonload();
                        func();
                    };
                } else {
                    window.onload = func;
                }
            }
        }

        function init() {
            var element = document.getElementsByTagName("iframe");
            for (var i = 0; i < element.length; i++) {
                element[i].onmouseover = processMouseOver;
                element[i].onmouseout = processMouseOut;
            }
            if (typeof window.attachEvent != 'undefined') {
                top.attachEvent('onblur', processIFrameClick);
            }
            else if (typeof window.addEventListener != 'undefined') {
                top.addEventListener('blur', processIFrameClick, false);
            }
        }

        attachOnloadEvent(init);

    });

    function onMousebtClick() {
        switch (event.button) {
            case 1:
                alert("leftclick");
                break;

            case 2:
                alert("right click");
                break;
        }
    }
    /*document.onmousedown = onMousebtClick*/
</script>

</head>
<body id="mybody">
<iframe src="http://www.microsoft.com" width="800px" height="300px" id="ifrm">
</iframe>
<br />
<br />
<form name="form" id="form" action="">
<textarea name="console" id="console" style="width: 300px; height: 300px;" cols=""
    rows=""></textarea>
<button name="clear" id="clear" type="reset">
    Clear</button>
</form>
</body>
</html>

我能够在身体标签中检测到鼠标右键,但我无法在iframe中检测到鼠标右键单击事件。

任何人都可以帮助我。

2 个答案:

答案 0 :(得分:3)

iframe内的页面可能位于同一个域中。

同一域的IFrame页面: http://fiddle.jshell.net/rathoreahsan/MNtw8/8/show/

参见演示: http://jsfiddle.net/rathoreahsan/gJtkW/

如果您像{C}}那样访问iframe内的其他域的页面,则不建议这样做。

编辑:参见下面给出的一些参考文献,希望它会有所帮助。

  1. the-iframe-cross-domain-policy-problem

  2. cross-domain-iframe-resizing

答案 1 :(得分:2)

嘿:这可能会有所帮助:

How Enable Right Click in IFRAME with JavaScript

http://forums.asp.net/p/1818670/5042726.aspx/1?Capture+mouse+right+click+event+inside+a+iframe+using+jquery+

  

我害怕这是不可能的。当你在iframe里面时,你就是   在第二个标签...除非你拥有内部的东西   iframe并且能够将您的Javascript放在页面内   这是不可能的。对于许多安全性来说,iframe非常有限   的原因。

如果有人不这么认真,请告诉我,很高兴接受这个帖子。

虽然试试这里提到的这个黑客:http://www.codingforums.com/archive/index.php/t-8824.html

此处http://forums.mozillazine.org/viewtopic.php?f=19&t=371334

欢呼声,