代码:
<script>
$(document).ready(function(){
$('#temp').val(function(i,val) {
return $('<div>').html(val).text();
});
});
</script>
<textarea id="temp"><?php echo $fetch['description']; ?></textarea>
在这段代码中我有一个textarea,我从数据库中获取它的值。现在,在我的数据库表列中,它包含带有多个标记的文本,如标记P,ul,br等。那么,如何从textarea中删除这些标签呢?请帮帮我。
谢谢
答案 0 :(得分:2)
我会使用PHP函数strip_tags()
:
<textarea id="temp"><?php echo strip_tags($fetch['description']); ?></textarea>
答案 1 :(得分:0)
具有一般语法的基本功能在plz下面尝试使用此功能 string strip_tags(string $ str [,string $ allowable_tags])