2016-09-15 84 views
-2

我有像這樣的「消化」變量的數據,這在我將對象「建議」轉換爲字符串之後。HTML`img`標記不能在對象jquery中顯示爲圖像

{"value":"<img src=\"http://localhost/erp/assets/images/product/123.jpg\"> 123123123 t-shirt","data":"ABC098765"} 

<img src="\"http://localhost/erp/assets/images/product/123.jpg\">無法顯示爲圖像,圖像標籤只顯示文本後追加到

這是輸出中顯示。

html += '<div class="' + className + '" data-index="' + i + '">' + formatResult(suggestion, value, i) + '</div>'; 

的complite腳本

$.each(that.suggestions, function (i, suggestion) { 
     if (groupBy){ 
      html += formatGroup(suggestion, value, i); 
     } 
     html += '<div class="' + className + '" data-index="' + i + '">' + formatResult(suggestion, value, i) + '</div>'; 
    }); 

格式結果

Autocomplete.formatResult = function (suggestion, currentValue) { 
     // Do not replace anything if there current value is empty 
     if (!currentValue) { 
      return suggestion.value; 
     } 

     var pattern = '(' + utils.escapeRegExChars(currentValue) + ')'; 

     return suggestion.value 
      .replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>') 
      .replace(/&/g, '&amp;') 
      .replace(/</g, '&lt;') 
      .replace(/>/g, '&gt;') 
      .replace(/"/g, '&quot;') 
      .replace(/&lt;(\/?strong)&gt;/g, '<$1>'); 
    }; 

如何使圖像標記爲圖像時輸出顯示?

謝謝

+2

需要調用'formatResult'函數代碼。 – Sasikumar

+0

你在哪裏添加'html'到你的DOM? 'formatResult'是怎麼樣的? –

+0

@Sasikumar我上面顯示的 –

回答

0

使用此stripslashes函數影像而返回suggestion.value剝離斜線。可能是因爲額外的斜槓,你的圖像顯示不正常。

function stripslashes (str) { 
    return (str + '').replace(/\\(.?)/g, function (s, n1) { 
    switch (n1) { 
    case '\\': 
     return '\\'; 
    case '0': 
     return '\u0000'; 
    case '': 
     return ''; 
    default: 
     return n1; 
    } 
    }); 
} 
+0

謝謝你這個工作..: ) –