js完美实现@提到好友特效(兼容各大浏览器)

  要求

  1.输入@时,弹出匹配的好友菜单

  2.光标进入包含有"@好友"的标签时,弹出菜单

  3.按backspace删除时,如果光标前面是包含有"@好友"的标签,弹出菜单

  4.兼容ie,firefox.

  具体做法

  针对要求一,很自然的会想到对输入框绑定事件。这里要绑定mousedown,而不是mouseup.因为如果是mouseup的话,用event.preventDefault()是无法阻止键盘输入@的。另外,这里在事件回调中用return false也是起不了作用的。

  绑定mousedown事件后,就要插入自定义的包含有"@好友"的标签了。新浪微博的输入框是用textarea做的,无法知道其内部是怎样处理的,只好看百度贴吧了。

js完美实现@提到好友特效(兼容各大浏览器)

  可以看到,贴吧是插入了<span class='at'></span>标签。这应该是方便后台用正则表达式匹配。

  具体的

  

复制代码 代码如下:

  vm.check_key=function(e){

  var editor=$('editor'),range;

  if(e.shiftKey&&e.keyCode==50){

  if (document.selection && document.selection.createRange) {

  range = document.selection.createRange();

  range.pasteHTML(" <span id='at"+at_index+"' class='at_span'>@</span> ");

  }else{

  document.execCommand("insertHtml", false," <span id='at"+at_index+"' class='at_span'>@</span> ");

  }

  e.preventDefault();

  }

  };

  这里需要在光标处插入,所以用到了range.

  然后就是菜单显示了,关键在于怎么定位。我的做法很垃圾,就是为插入的span添加id,然后根据span id的位置为菜单定位。如果有更好的做法,请告诉我一声。

  具体的

  

复制代码 代码如下:

  function at_box_show(at){

  var at_pos=avalon($(at)).position();

  $('at_box').style.left=at_pos.left+'px';

  $('at_box').style.top=at_pos.top+16+'px';

  $('at_box').style.display='block';

  }

  var at_index=0,cur_index=0;

  avalon.define('editor', function(vm) {

  vm.item_click=function(){

  $('at'+cur_index).innerHTML="@"+this.innerHTML;

  $('at_box').style.display='none';

  at_index++;

  };

  vm.check_key=function(e){

  var editor=$('editor'),a=getCharacterPrecedingCaret(editor),range;

  if(e.shiftKey&&e.keyCode==50){

  if (document.selection && document.selection.createRange) {

  range = document.selection.createRange();

  range.pasteHTML(" <span id='at"+at_index+"' class='at_span'>@</span> ");

  }else{

  document.execCommand("insertHtml", false," <span id='at"+at_index+"' class='at_span'>@</span> ");

  }

  at_box_show('at'+at_index);

  cur_index=at_index;

  e.preventDefault();

  }

  };

  });

  at_show_box根据新插入的span id,为at_box定位,然后显示菜单。cur_index表示光标当前所在的span id.设置这个变量因为用户可能倒回去改已经插入的span,而at_index是一直递增的,所以这里就还需要一个变量。

  用户点击菜单中好友项,触发item_click回调。回调里就是将好友名字用innserHTML添加到当前span里面.然后隐藏菜单,at_index++。

  上面是监听shift+@,接着是监听backspace删除。

  

复制代码 代码如下:

  function getTextBeforeCursor(containerEl) {

  var precedingChar = "", sel, range, precedingRange;

  if (window.getSelection) {

  sel = window.getSelection();

  if (sel.rangeCount > 0) {

  range = sel.getRangeAt(0).cloneRange();

  range.collapse(true);

  range.setStart(containerEl, 0);

  precedingChar = range.cloneContents();

  }

  } else if ( (sel = document.selection)) {

  range = sel.createRange();

  precedingRange = range.duplicate();

  precedingRange.moveToElementText(containerEl);

  precedingRange.setEndPoint("EndToStart", range);

  precedingChar = precedingRange.htmlText;

  }

  return precedingChar;

  }

  getTextBeforeCursor的作用是获取光标前的内容.由于兼容性,这个函数在标准浏览器中可以得到是光标前所有内容的DocumentFragment,而在ie中就只能得到文本(不是node)了,不过这个html字符串可以转换成DocumentFragment.在avalon中用parseHTML就可以将html字符串变成node了。jquery中用$(html)[0]也能得到node.

  有了这个函数,再用lastChild就可以判断光标是不是在光标前html的lastChild里,并且这个lastChild是span。

  具体的

  

复制代码 代码如下:

  var a=getTextBeforeCursor($('editor'));

  if(e.keyCode==8){

  if(!-[1,]){

  var b=avalon.parseHTML(a).lastChild;

  }else{

  var b=a.lastChild;

  }

  if(b.nodeType==1&&b.nodeName=='SPAN'){

  var id=b.id;

  cur_index=b.id.substring(2);

  at_box_show(b.id);

  }else

  $('at_box').style.display='none';

  }

  最后是光标进入span标签,显示菜单。这个很显然需要绑定鼠标事件。这里绑定mouseup,因为如果绑定mousedown的话,需要鼠标在span标签再点一次才能显示菜单。至于原理,和上面差不多。

  

复制代码 代码如下:

  vm.check_mouse=function(e){

  var editor=$('editor'),a=getTextBeforeCursor(editor);

  if(!-[1,]){

  var b=avalon.parseHTML(getTextBeforeCursor(editor)).lastChild;

  }else{

  var b=a.lastChild;

  }

  if(b!=null&&b.nodeType==1&&b.nodeName=='SPAN'){

  var id=b.id;

  cur_index=b.id.substring(2);

  at_box_show(b.id);

  }else

  $('at_box').style.display='none';

  };

  注意,如果光标在span里面,就要取出它的id,at_box根据这个id定位,另外还要重置cur_index.

  至于ajax更新菜单,字符匹配我就不做了

  效果

  firefox

js完美实现@提到好友特效(兼容各大浏览器)

  ie8

js完美实现@提到好友特效(兼容各大浏览器)

  ie7

js完美实现@提到好友特效(兼容各大浏览器)

  ie6

js完美实现@提到好友特效(兼容各大浏览器)

  下载

  以上就是本文所述的全部内容了,希望对大家了解javascript能够有所帮助。