是否可以在textarea上设置时尚的jquery滚动?

时间:2011-08-11 10:05:37

标签: jquery

是否可以在textarea上设置时尚的jquery滚动?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery textarea scroll</title>
<style type="text/css">
.my_textarea{
    height:250px;
    width:250px;
    overflow:auto;
}
</style>
</head>

<body>
<textarea name="txt_area" class="my_textarea"></textarea>
</body>
</html>

3 个答案:

答案 0 :(得分:1)

我正在使用http://jscrollpane.kelvinluck.com/并且效果很好

答案 1 :(得分:0)

textarea
{
    scrollbar-3dlight-color: #444;
    scrollbar-highlight-color: #fff;
    scrollbar-face-color: #444;
    scrollbar-arrow-color: #fff;
    scrollbar-shadow-color: #fff;
    scrollbar-darkshadow-color: #444;
    scrollbar-track-color: #444;
}

答案 2 :(得分:0)