0

我正在尝试在不加载外部文件的情况下创建一个字数统计(适用于任何页面)书签。简而言之,我想单击小书签,然后能够在屏幕上拖动和选择文本,并获得所选单词数量的警报。我已经把它放在一起以获得正确的功能,但我在转换为书签时磕磕绊绊:

<html>
<body onmouseup="countWords()">     
<article id="page1">
    <h1>Home 2</h1>
    <p>Welcome 2</p>
    <script type="text/javascript">
function countWords() {
var selectedText = document.activeElement;
var selection = selectedText.value.substring(selectedText.selectionStart, selectedText.selectionEnd);
words = selection.match(/[^\s]+/g).length;
if (words !== "") {
    alert(words);
}
}
</script>
    <div><textarea></textarea></div>
</article>
</body>
</html>

第一个问题:我可能会叫错树,但我想将 onmouseup 附加到 activeElement 但不知道如何做到这一点。

第二个问题:我可以在不使用外部文件的情况下将其插入书签吗?

任何帮助将不胜感激。

最好的,

塔姆勒

转义字符...这就是问题所在。

这是一个工作示例:

<a href="javascript:(document.onmouseup=function(){var selectedText=document.activeElement;var selection=selectedText.value.substring(selectedText.selectionStart,selectedText.selectionEnd);words=selection.match(/[^\s]+/g).length;if(words!==&quot;&quot;){alert(words)}})();" target="_blank">Word Count</a>
4

2 回答 2

1

试试这个,看起来你的代码有点复杂:

alert(window.getSelection().toString().match(/\w+/g).length);

第一部分,window.getSelection().toString()将获得实际选择的文本。最后一部分是一个基本的正则表达式来匹配每个单词,然后计算匹配。您可以修改正则表达式以或多或少地适应您的需求。

这只会提醒已经选择的单词数量,如果您想在点击小书签后进行选择,您可以将上面的内容包装在一个侦听窗口 mouseup 事件的函数中。

编辑:这是一个完整的示例书签:

<a href="javascript: _wcHandler = function() { var _wcSelection, _wcCount; ((_wcSelection = window.getSelection().toString().match(/[^\s]+/g)) && (_wcCount = _wcSelection.length) && (window.removeEventListener('mouseup', _wcHandler) || alert(_wcSelection.length))); }; window.addEventListener('mouseup', _wcHandler);">Word Count</a>

...并以可读的格式编写:

_wcHandler = function() {
    var _wcSelection, _wcCount; 
    ((_wcSelection = window.getSelection().toString().match(/[^\s]+/g)) 
     && (_wcCount = _wcSelection.length) 
     && (window.removeEventListener('mouseup', _wcHandler) 
         || alert(_wcCount))); 
}; 
window.addEventListener('mouseup', _wcHandler);​

最后,一个 jsFiddle 供您修改:http: //jsfiddle.net/Rr2KU/1/

于 2012-10-19T13:27:21.213 回答
1

我可能会叫错树,但我想将 onmouseup 附加到 activeElement 但不知道如何做到这一点。

将其附加到文档中。document.onmouseup = countWords或者document.onmouseup = function(){...}

我可以在不使用外部文件的情况下将其插入到书签中吗?

是的:

javascript:document.onmouseup=function(){var selectedText=document.activeElement;var selection=selectedText.value.substring(selectedText.selectionStart,selectedText.selectionEnd);words=selection.match(/[^\s]+/g).length;if(words!==""){alert(words)}}

http://www.google.com/search?q=bookmarklet+generator

但我用过:http: //javascriptcompressor.com/

于 2012-10-19T14:35:02.503 回答