Presumably, you would just take the text, wrap it in an LI with the class ui-state-default
and insert it into the sortable UL element. You will then need to refresh the sortable to cause the newly inserted element to be recognised:
$(".btn").click(function (e) {
e.preventDefault();
var text = $("input[name='add1']").val();
var $li = $("<li class='ui-state-default'/>").text(text);
$("#sortable").append($li);
$("#sortable").sortable('refresh');
});
You can try it here.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…