gpt4 book ai didi

javascript - 显着 Markdown 。获取实际文本长度

转载 作者:行者123 更新时间:2023-11-30 15:57:20 26 4
gpt4 key购买 nike

我正在创建一个带有 textarea 和 Remarkable 的 Markdown 编辑器。我只想在文本长度大于最小值时提交。我怎样才能得到在我的输出中看到的文本的实际长度

 var CharCounter = React.createClass({

getText : function(){
if(this.props.count < this.props.min)
return (this.props.min - this.props.count) + ' more to go';
else if(this.props.count < this.props.max)
return (this.props.max - this.props.count) + ' left';
else
return 'Done';

},
render : function(){
return(
<p><small>{this.getText()}</small></p>
);
}
});

问题是如果我尝试直接使用文本区域值。长度包括markdown .ie ['*', '**']

最佳答案

你应该添加一些代码,一些引用。

正确答案可能是

if(textarea.value.length > minLength) /* do something */

var submittable = $(textarea).text().length > minLength;
return submittable;

关于javascript - 显着 Markdown 。获取实际文本长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38300642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com