0

OK、これは私の問題です:

  • JQuery Lined TextArea プラグインを使用しています
  • textarea がすべてのブラウザ ウィンドウ領域をカバーするようにしたい (全幅、全高)
  • ブラウザ ウィンドウのサイズを変更しても、行番号が反映されるようにします。

ここに私のHTMLがあります:

<html>
    <head>
        <link rel="stylesheet" type="text/css" href="style.css">
        <script src="jquery.min.js"></script>
        <script src="jquery-linedtextarea.js"></script>
    </head>
    <body>
        <textarea id="tv">
            Some sample text
        </textarea>

        <script>
            $(function() {
                $("#tv").linedtextarea();
            });
        </script>
    </body>
</html>

ここに私のCSSがあります:

body
{
    margin:0;
    padding:0;
}

*:focus {outline:0px none transparent;}

textarea
{
    border:0;
    margin:0;
    width:100%;
    height:100%;
    font-family:Courier, "Courier New";
    font-size:12px;
}

/* Following lines taken directly from Demo */

.linedwrap {
    border: 1px solid #c0c0c0;
}

.linedtextarea {
    padding: 0px;
    margin: 0px;
}

.linedtextarea textarea, .linedwrap .codelines .lineno {
    font-size: 10pt;
    font-family: monospace;
    line-height: normal !important;
}

.linedtextarea textarea {
    padding-right:0.3em;
    padding-top:0.3em;
    border: 0;
}

.linedwrap .lines {
    margin-top: 0px;
    width: 50px;
    float: left;
    overflow: hidden;
    border-right: 1px solid #c0c0c0;
    margin-right: 10px;
    background:#DDD;
}

.linedwrap .codelines {
    padding-top: 5px;
}

.linedwrap .codelines .lineno {
    color:#AAAAAA;
    padding-right: 0.5em;
    padding-top: 0.0em;
    text-align: right;
    white-space: nowrap;
}

.linedwrap .codelines .lineselect {
    color: red;
}

何か案は?

4

2 に答える 2

0

jqueryファイルで次のコードを試してください。

<script>
    $(function() {
    $("#tv").width(window.screen.width);//widht of parent element of textarea
    $("#tv").height(window.screen.height);//height of parent element of textarea
        $("#tv").linedtextarea(
        {selectedLine: 1}
    );
    });
</script>
于 2013-02-08T11:37:45.080 に答える