我知道之前可能会问过这个问题,但我还没有找到解决问题的方法。
在this page上,如果单击左侧的Webster,则可以看到显示<b>test html</b><br />
的部分。我需要在页面上正确呈现它。
以下是保存到数据库的数据:
<b>test html</b><br />
以下是我在页面上显示的方式(问题区域为store_details
):
contentPane.html('');
html = '<div onclick="showStoreDetails(\'item_store_'+j+'\')" class="custom-location-wrapper"><div class="wk_st_product_gen" id="item_store_'+ j +'" onmouseout="offhighlightMarker('+j+')" onmouseover="highlightMarker('+j+')" onclick="showcontent(\''+store_title+'\',\''+store_address+'\',\''+store_link+'\',\''+j+'\')"><input type="hidden" class="position" id="'+str_dis;
html+= '"><input type="hidden" id="str_lati" value="'+store_latitude;
html+= '"><input type="hidden" id="str_longi" value="'+store_longitude;
html+= '"><div class="store_info"><img alt="store" src="<?php echo HTTP_SERVER;?>image/webkul-store-locater/'+store_image;
html+= '"> <div class="store_address"><div class="store_title">'+store_title;
html+= '</div><div class="store_details"><p class="store_addressline" >'+store_address;
html+= '</p><p class="store_locality">'+store_local;
html+= '</p><p class="store_distance">'+store_distance;
html+= '</p><p>'+store_details;
html+= '</p></div></div></div></div>';
html+= '<style>#alert_red{display:none;}</style>';
contentPane.append(html);
答案 0 :(得分:0)
看看Lo-Dash库(基于下划线)。它有一个_.unescape方法,可以做到这一点:
http://lodash.com/docs#unescape
html+= '</p><p>'+_.unescape(store_details);
答案 1 :(得分:0)
您可以在PHP中使用html_entity_decode
在检索数据之前对其进行解码。