簡體   English   中英

如何在連續的文本區域中打印結果?

[英]How can I print result in consecutive textarea?

我再次在這里再次提出同樣的問題。

現在我的老問題解決了。 我有兩個文件index.html和code.js 1)index.html

<html>
<head>
<title> perl </title>
<link rel="stylesheet" href="http://code.guru99.com/css/1140.css" type="text/css" media="screen" />
        <link rel="stylesheet" href="http://code.guru99.com/css/styles.css" type="text/css" media="screen" />
        <script src="http://code.guru99.com/php/lib/codemirror.js"></script>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">></script>
        <link rel="stylesheet" href="http://code.guru99.com/Sanjay/lib/codemirror.css" type="text/css" media="screen" />
        <script src="code.js"></script>
        <script type="text/javascript" src="http://code.guru99.com/perl/perl.js"></script>
<style> 
 .CodeMirror {
    border: 1px solid #eee;
    height: auto;
    width : 600px;
}
.CodeMirror-scroll {
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
}
</style>
</head>
<body>
Integer : whole numbers e.g. -3, 0, 69. The maximum value of an integer is platform-dependent. On a 32 bit machine, its usually around 2 billion. 64 bit machines usually have larger values. The constant PHP_INT_MAX is used to determine the maximum value.
<pre class="codeguru">say 'hi';</pre>
Let us now look at how PHP determines the data type depending on the attributes of the supplied data.
<pre class="codeguru">say 'hello';</pre>
Floating point numbers
<pre class="codeguru">say 'you r amazing';</pre>
Character strings
<pre class="codeguru">say 'i am fine';</pre>
</div>
<form class="hidden code-box" method="GET" name="sample">
<div dir="ltr"><textarea class="php" name="codeguru"></textarea></div>
<input type="button" value="Run" />
</br></br>
Output:</br></br>
    <textarea id="print-result" disabled="true" cols="77"></textarea></br>
</form></div>
</body>
</html>

和code.js包含以下代碼

$(document).ready(function() 
{
    $('pre.codeguru').each(function() 
    {
            var pre = this;
            var form = $('form[name=sample]').clone();
            $(form).removeAttr('name');
            $(form).removeClass('hidden');
            $($(form).find('textarea')[0]).val($(pre).text());
            var id = $(pre).attr('id');
            $(form).find('div textarea[name=code]').first().attr('id', id);
        $(pre).replaceWith(form);
    });


    var n = 0;
    $('input[type=button]').each(function () {
            $(this).click(function (x) {
                return function () {
                    execute(x);
                };
            }(n++))
        }
    );

    window.editors = [];
    $('textarea[name=codeguru]').each(function() 
    {
        window.editor = CodeMirror.fromTextArea(this, 
        {
            lineNumbers: true,
            matchBrackets: true,
            mode: "application/x-httpd-perl",
            tabMode: "shift"
         });
            editors.push(editor);
    });



});
function execute(idx) {
      p5pkg.CORE.print = function(List__) {
          var i;
          for (i = 0; i < List__.length; i++) {
            document.getElementById('print-result').value+=p5str(List__[i])        
          }
          return true;
      };
      p5pkg["main"]["v_^O"] = "browser";
      p5pkg["main"]["Hash_INC"]["Perlito5/strict.pm"] = "Perlito5/strict.pm";
      p5pkg["main"]["Hash_INC"]["Perlito5/warnings.pm"] = "Perlito5/warnings.pm";

      var source = editors[idx].getValue();
      alert(source);

      var pos = 0;
      var ast;
      var match;
      document.getElementById('print-result').value = "";
      try {
            var start = new Date().getTime();
            var js_source = p5pkg["Perlito5"].compile_p5_to_js([source]);
            var end = new Date().getTime();
            var time = end - start;
            // run
            start = new Date().getTime();
            eval(js_source);
            end = new Date().getTime();
            time = end - start;
       }
       catch(err) {
            //document.getElementById('log-result').value += "Error:\n";
       }
  }

當我運行此代碼時,它的工作正常,也可以給我輸出。 但是我的問題是輸出僅在一個文本區域中打印。 我想在連續的textarea中打印輸出。

code.js中的此代碼打印輸出。

p5pkg.CORE.print = function(List__) {
    var i;
    for (i = 0; i < List__.length; i++) {
       document.getElementById('print-result').value += p5str(List__[i])                    
    }
}

所以我要做的是在連續的textarea中打印輸出。請幫助我。

name attribute添加到您的textarea例如

<textarea id="print-result" disabled="true" name="code" cols="77"></textarea>

代替

<textarea id="print-result" disabled="true" cols="77"></textarea>

更新

在您的代碼中,我看不到具有name="code"textarea ,而您正在使用它。 codeguru嗎?

對頁面中的不同元素使用相同的ID可能會造成問題。

<textarea id="print-result" class='print-result' disabled="true" cols="77></textarea>

在code.js中打印輸出的修改后的代碼是

       p5pkg.CORE.print = function(List__) {
            var i,concat='';
            for (i = 0; i < List__.length; i++) {
            concat=$(".print-result").eq(idx).val();
            $(".print-result").eq(idx).val(concat+p5str(List__[i]));

       }
            return true;
        }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM