Jquery Twitter喜欢字符计数器偏移缩短链接

时间:2011-11-29 15:44:39

标签: jquery regex url-shortener charactercount

你好我想在twitter上模仿字符计数器。因此,当您键入或粘贴时,限制会减少。但是我写的这个服务也会有一个url shortener,所以我想用最终URL的字符数来抵消它。缩短发生在发布端,而不是在您输入URL时。

我几乎所有的东西都在工作但是当我点击元素时,偏移量不再存在,并且字符数被设置回到链接是它们的全长时的状态。我相信这是因为我使用.change()方法而不是.bind(“输入粘贴”),但输入粘贴没有应用偏移量。

/* Character Count for Posts */                
function checkPostForURL(post){
    var matches = [],
        urlexp = new RegExp("(^|[ \t\r\n])((http|https):(([A-Za-z0-9$_.+!*(),;/?:@&~=-])|%[A-Fa-f0-9]{2}){2,}(#([a-zA-Z0-9][a-zA-Z0-9$_.+!*(),;/?:@&~=%-]*))?([A-Za-z0-9$_+!*();/?:~-]))","g"),
        $linkShort = $('#linkstoshort'),
        matchIdx = 0;

    if ( post !== undefined ){
        if ( urlexp.test(post) ){
               var offset = 0;
               $('.shortenlinks').show();
               matches = post.match(urlexp);

               $linkShort.html('');

                for(; matchIdx < matches.length; matchIdx++) {
                    var match = matches[matchIdx],
                        matchOffset = match.length - 23;

                    offset += matchOffset;

                    $linkShort.append('<li>'+match+'</li>');
                }

                return offset;
        }
    }
 }

$(function(){
    var $postMsg = $('#post-msg'),
        message = $postMsg.text(),
        twstartchars = 140 - message.length,
        fbstartchars = 420 - message.length,
        $fbCount = $("#fb-char"),
        $twCount = $("#tw-char"),
        setRemainingChars = function (evt) {
            var a = $postMsg.val().length,
                post = $postMsg.val();        

            var offset = checkPostForURL(post);
            if ( offset ){
                a = a - offset;
            }

            $fbCount.text((420-a));
            $twCount.text((140-a));
            if ( a > 120 ){
                    $fbCount.css('color','red');
                    if ( a > 380 ){
                            $fbCount.css('color','red');
                    }
            }else{
                    $fbCount.css('color','#333');
                    $twCount.css('color','#333');
            }
        };

    $fbCount.text(fbstartchars);
    $twCount.text(twstartchars);

    $postMsg.on('keypress change', setRemainingChars);
});

更新:我做了一个JS小提琴,以更好地展示我想要做的事情 http://jsfiddle.net/FUADn/384/

1 个答案:

答案 0 :(得分:0)

您是否尝试在输入上绑定.keyup()事件而不是更改事件?这在技术上应该起作用并在你使用moust等后保持绑定。