JavaScript中的加速器UI

时间:2010-03-14 13:52:49

标签: javascript events user-interface accelerator

我可以在客户端使用JavaScript创建类似Internet Explorer加速器的东西吗?

当用户选择页面上的某些文字时,我希望显示一个可点击的图标。

我应该等待的事件是什么?

2 个答案:

答案 0 :(得分:2)

本质上,我们的想法是妥善处理document.onmouseup事件,显示隐藏的“加速器”div并检索所选文本。

我想以下示例对您来说是一个很好的起点:

<html>
<head>
    <script>
        function getSelectedText() {
            var selection = '';
            if (window.getSelection) selection = window.getSelection().toString();      
            else if (document.getSelection) selection = document.getSelection();                
            else if (document.selection) selection = document.selection.createRange().text;
            return selection;
        }

        function showAccelerator(x, y){
            var text = getSelectedText();
            if (text !== ''){
                accelerator.style.display = '';
                accelerator.style.left = x;
                accelerator.style.top = y;
                timeout_id = setTimeout(hideAccelerator, 1000);
            } else {
                hideAccelerator()
            }
        }

        function hideAccelerator(){
            clearTimeout(timeout_id);
            accelerator.style.display='none';
        }

        function isAcceleratorHidden(){
            return accelerator.style.display === 'none';
        }

        function onMouseUp(evt){
            if (isAcceleratorHidden()){
                var event2 = (document.all) ? window.event : evt;
                showAccelerator(event2.clientX, event2.clientY);
            }
        }

        function alertSelection(){
            alert(getSelectedText());
        }

        document.onmouseup = onMouseUp;
    </script>
</head>
<body>
    <div id="accelerator" style="position: absolute; width: 100px; left: 0px; top: -50px; display: none; border: solid; background-color : #ccc;">
        accelerator div<input type="button" value="alert" onclick="alertSelection();" />
    </div>
    <p>
        sometext<br/><br/><br/>
        even more text
    </p>
</body>
</html>

答案 1 :(得分:1)

可能最好的方法是在页面上设置一个 mouseup 监听器,该监听器调用一个测试选择的函数,比如

function hasSelection() {
  var selText = "";
  if (document.selection) { // IE
    selText = document.selection.createRange().text;
  } else () { // Standards-based browsers
    selText = document.getSelection();
  }
  // This simple example does not include legacy browsers like Netscape 4, etc.
  if (selText !== "") {
    return true
  }
  return false;
}

您可以更改此选项以返回选择并以其他方式操纵它。但是此处返回的布尔值可以确定您的按钮是否显示。

对IE使用 attachEvent ,对Firefox等使用 addEventListener 。 al,并听取mouseup事件。