質問する
1217 次
3 に答える
3
試す:
$('#selections li').click(function() {
$('#id-of-your-textarea').append($(this).text() + '\n');
})
于 2013-05-10T03:27:14.130 に答える
0
このような何かがそれを行う必要があります:
<script>
$(document).ready(function(){
$("#selections").children().each(function(){
$(this).click(function(){
$("#area").text($("#area").text() + $(this).html() + '\n');
});
});
});
</script>
<textarea id="area"></textarea>
<ul id="selections">
<li>Here is some text</li>
<li>Here is some more text</li>
<li>Here is even more text</li>
</ul>
于 2013-05-10T03:32:17.167 に答える