如果用户键入:
<iframe width="420" height="315" src="http://www.youtube.com/embed/8FozVVP72Qk" frameborder="0" allowfullscreen></iframe>
它成为了:
<iframe width="420" height="315" src="http://www.youtube.com/embed/8FozVVP72Qk" frameborder="0" allowfullscreen></iframe>
代码被显示而不是被解释。
所以只要 nicedit 文档是旧的并且不是很完整,我想我只是替换那些值,
我可以使用 replace() 函数,但是有这种格式转换的函数吗?
这就是我获得价值的方式:
$('body').on('submit','#new_blog',function(e){
e.preventDefault();
var textarea = $(this).find('textarea').val();
var valueWithIframeSupport = textarea.replace('<','<').replace('>','>');
/* This is what i had in mind but itdoesnt really seems an option*/
});
谢谢