我想在要显示为类似列表项的输入字段中添加追加到ul。
public class Node
{
public Node()
{
Nodes = new ObservableCollection<Node>();
}
public bool IsFolder { get; set; }
public string Name { get; set; }
public ObservableCollection<Node> Nodes { get; set; }
}
答案 0 :(得分:0)
使用prepend
来解决此引用http://api.jquery.com/prepend/
$(document).ready(function(){
$("button").click(function(){
if (!$('#myText').val().trim())
{
alert("please enter the text");
}
else
$("#demo").prepend('<li>'+$('#myText').val()+'</li>')
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<body>
<input type="text" id="myText" onfocus="this.value=''">
<button>add</button>
<ul id="demo">
</ul>
</body>