日期:2014-05-16 浏览次数:20423 次
<style type="text/css">
#div1{
height:50px;
width:300px;
margin-left:300px;
margin-top:-150px;
padding:15px;
background-color:#8FBC8F;
border:1px solid black
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function(){
$("#div1").click(function(){
$("textarea").val($("#div1").text());
});
})
</script>
<textarea rows="10" cols="30"></textarea>
<div id="div1">
此项目很好 此项目很好
此项目很好 此项目很好
此项目很好 此项目很好
此项目很好 此项目很好
</div>