我有一个文字区域。每当有人点击文本区域时,高度将会增加,然后再次点击屏幕高度的任何位置都会减少。
<textarea id="revbox" style="height: 50px; width: 260px;"></textarea>
<script>
$('textarea#revbox').focus(function () {
$('textarea#revbox').animate({ height: 150 }, 1000);
});
</script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
但代码无效。我怎么能这样做?
答案 0 :(得分:1)
您的代码适用于focus
事件,您只需要为blur
事件添加类似的代码。试试这个:
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<textarea id="revbox" style="height: 50px; width: 260px;"></textarea>
<script>
$('textarea#revbox').focus(function () {
$('textarea#revbox').animate({ height: 150 }, 1000);
});
$('textarea#revbox').blur(function () {
$('textarea#revbox').animate({ height: 50 }, 1000);
});
</script>
&#13;
请注意,您需要在顶部包含jQuery(最好在<header>
中)。
答案 1 :(得分:1)
尝试使用public void onClick(View v) {
Imageview.setOnClickListener(new View.OnClickListener() {
TextView tv = (TextView) findViewById(R.id.textView);
tv.setMovementMethod(new ScrollingMovementMethod());
tv.append(value1 + "\n");
}
}
和mouseenter
事件:
mouseleave