텍스트 만 복사 하 는 javascript 스 크 립 트

845 단어 JavaScript
$.fn.onlyPastePlainText = function(){
  $(this).on('paste', function(e) {        
    var text = 
        e.originalEvent.clipboardData.getData("text/plain")
        .replace(/
/g, "<br/>"); document.execCommand("insertHTML", false, text); return false; }); };

 
 /**
  * Convert HTML breaks to newline
 */
 br2nl : function(str) {
      return str.replace(/<br\s*\/?>/mg,"
"); }

 
 
  /**
   * Convert newline to HTML breaks
   */
  nl2br : function(str) {
      return str.replace(/
/g, "<br/>"); }

 
 
 
 

좋은 웹페이지 즐겨찾기