Some print.
Some print.
~SingleForum~无废话记录~ + ~19~记录点有用的好吗?少说废话少装b~

~SingleForum~无废话记录~ » js

IE和FF得到选中文字

Started 2 years ago by admin. | Tags: . .

用JQUERY举例:

JAVASCRIPT:
  1. var p;
  2.  
  3. if (jQuery.browser.msie) {
  4.     p = document.selection.createRange().duplicate().text;
  5. } else {
  6.     p = window.getSelection().toString();
  7.     //直接window.getSelection()是一个DOM,不是字符串
  8.     alert(typeof window.getSelection());
  9.     alert(typeof p);
  10. }

RSS feed for this topic