我有一个文本区,当你添加内容时,它会自动添加项目符号,问题是当一个新的行被添加时,它应该添加单独的ullet点。问题是它的内容完全附加了
下面是我如何添加内容
应该是这样的
下面是片段
null
$(function(){
$('#getvalue').click(function(){
// Get the text area value
var textarea_value = $('#textarea').val();
// Get a jQuery object of the template html
var templateHolder = $($('#template3').html());
// Put the text area text inside of the template's <p> tag
// Use .html() to overwrite the old content with the new
// content every time
templateHolder.find('p').html(textarea_value);
// Get a reference to the <ul> element
var $btext = $('.popupbtext');
// Add the template (with text area text) to the <ul> element
$btext.append(templateHolder);
// Commented out because it was throwing errors.
// Left in because it was part of original fiddle
//$('.jcarouselbtext').jcarousel('reload', {
// animation: 'slow'
//});
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.0/jquery.min.js"></script>
<textarea id="textarea"></textarea>
<br/>
<input type="button" id="getvalue" value="Send text" class="demobutton">
<div class="jcarouselbtext" data-jcarousel="true">
<ul class="popupbtext">
<li>
<p class="info1">First bullet point</p>
</li>
</ul>
</div>
<script id="template3" type="text/template">
<li>
<p class="info1 show-textarea-value"></p>
</li>
</script>
null
尝试根据新行拆分文本,并将它们作为新列表项添加到popupbtext元素中
null
$(function(){
$('#getvalue').click(function(){
// Get the text area value
var textarea_value = $('#textarea').val();
var lines = textarea_value.split('\n'); //Split the text content based on new line and iterate through each line then add them as seperate list item
lines.forEach(function(line){
// Get a jQuery object of the template html
var templateHolder = $($('#template3').html());
// Put the text area text inside of the template's <p> tag
// Use .html() to overwrite the old content with the new
// content every time
templateHolder.find('p').html(line);
// Get a reference to the <ul> element
var $btext = $('.popupbtext');
// Add the template (with text area text) to the <ul> element
$btext.append(templateHolder);
});
// Commented out because it was throwing errors.
// Left in because it was part of original fiddle
//$('.jcarouselbtext').jcarousel('reload', {
// animation: 'slow'
//});
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.0/jquery.min.js"></script>
<textarea id="textarea"></textarea>
<br/>
<input type="button" id="getvalue" value="Send text" class="demobutton">
<div class="jcarouselbtext" data-jcarousel="true">
<ul class="popupbtext">
<li>
<p class="info1">First bullet point</p>
</li>
</ul>
</div>
<script id="template3" type="text/template">
<li>
<p class="info1 show-textarea-value"></p>
</li>
</script>
我有一个在 Ubuntu 工作站上运行的 Flume 1.5 代理,它从各种设备收集日志并将日志重新格式化为具有很长行的逗号分隔文件。在收集和重新格式化日志后,它们被放入假脱机目录中,Flume 代理将日志文件发送到运行 Flume 代理的 Hadoop 服务器,以接受日志文件并将它们放在 HDFS 目录中。 除了当Flume将文件发送到HDFS目录时,每行每2048个字符后有换行符之外,一切都正
我正在生成一个包含一些注释、单元格和表格的PDF文件。。。我在JAVA中使用PDFbox 我想在我的字符串中添加一个换行符,它被称为“esc注释”,它包含一个注释数组。 我试过"\n","\r","System.get属性("line.separator")"都没用。 这是我的代码: 我想为每个来自getCloseComment()的评论添加一个换行符
问题内容: 我只想在文件末尾添加换行符,以防止在文件末尾出现多个换行符。 我希望使用sed。这是我当前代码遇到的问题: 当我在文件上运行代码时; 如果没有,它将添加换行符,如果存在则将其删除…这使我感到困惑。 问题答案: 由于它会删除换行符(如果不存在),因此您可以简单地使用: 添加换行符并删除所有内容,然后添加换行符。不是优雅的方式,但肯定可以工作:)
这是我使用Thymeleaf模板的代码 正在生成: 我希望每个复选框都在一行中。在普通的纯HTML中,我会使用<代码>
我正在使用Goland来编写我的grpc应用程序。生成我的原型文件后,文件末尾不存在尾随换行符。有没有办法在 IDE 中启用此功能?
问题内容: 我试图为句子添加换行符,然后添加 了以下代码。 由于某些原因,我得到了服务器错误的结果。我如何解决它? 问题答案: 是换行符。不是。 使用与 1.直接回显页面 现在,如果您尝试将字符串回显到页面: 输出 将是: 你不会得到在新的生产线,因为PHP是一种服务器端语言,和您发送输出HTML,你需要在HTML创建换行符。HTML无法理解。您需要使用该功能。 它的作用是: 返回在所有换行符(\