0

我有以下代码用于 skulpt 的 jscript 实现,以在浏览器中运行 Python。我添加了一个“清除”按钮,当单击它时,我希望从屏幕上删除/清除文本框中的文本以及任何“运行”代码。

下面显示了我的尝试(函数“clearit”),但它不起作用。任何建议 - 请发布该功能的代码,并解释我做错了什么/更正。

相关功能

   function clearit(){ 
   var prog = document.getElementById("yourcode").value; 
   mypre.innerHTML = 'TRY SOME NEW CODE'; 
   <textarea id="yourcode" cols="40" rows="10">
print("Hello World")
</textarea>
}

我在下面粘贴了完整的代码,因为这可能是因为我将函数放在了错误的位置。一旦我添加了这个功能,它就会完全停止工作。

完整代码(page.html)

<!DOCTYPE html>
<html>
<head> 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script> 
<script src="http://www.skulpt.org/js/skulpt.min.js" type="text/javascript"></script> 
<script src="http://www.skulpt.org/js/skulpt-stdlib.js" type="text/javascript"></script> 

</head> 

<body> 

<script type="text/javascript"> 
// output functions are configurable.  This one just appends some text
// to a pre element.
function outf(text) { 
    var mypre = document.getElementById("output"); 
    mypre.innerHTML = mypre.innerHTML + text; 
} 
function builtinRead(x) {
    if (Sk.builtinFiles === undefined || Sk.builtinFiles["files"][x] === undefined)
            throw "File not found: '" + x + "'";
    return Sk.builtinFiles["files"][x];
}

// Here's everything you need to run a python program in skulpt
// grab the code from your textarea
// get a reference to your pre element for output
// configure the output function
// call Sk.importMainWithBody()
function runit() { 
   var prog = document.getElementById("yourcode").value; 
   var mypre = document.getElementById("output"); 
   mypre.innerHTML = ''; 
   Sk.pre = "output";
   Sk.configure({output:outf, read:builtinRead}); 
   (Sk.TurtleGraphics || (Sk.TurtleGraphics = {})).target = 'mycanvas';
   var myPromise = Sk.misceval.asyncToPromise(function() {
       return Sk.importMainWithBody("<stdin>", false, prog, true);
   });
   myPromise.then(function(mod) {
       console.log('success');
   },
       function(err) {
       console.log(err.toString());
   });
} 



<script>
function clearit(){ 
   var prog = document.getElementById("yourcode").value; 
   var mypre = document.getElementById("output"); 
   <textarea id="yourcode" cols="40" rows="10">
print("Hello World")
</textarea>
} 
</script>




</script> 
<h3>Try This</h3> 
<form> 
<textarea id="yourcode" cols="40" rows="10">
print("Hello World")
</textarea><br /> 
<button type="button" onclick="runit()">Run</button> 
</form> 
<p>Output below</p>
<button type="button" onclick="clearit()">Clear</button> 
<pre id="output" ></pre> 
<!-- If you want turtle graphics include a canvas -->
<div id="mycanvas"></div> 
  <script src="js/skulpt.min.js" type="text/javascript"></script>
  <script src="js/skulpt-stdlib.js" type="text/javascript"></script>
</body>
</html>

我还尝试了该函数的其他一些迭代,见下文。

<script>
function clearit(){ 
   var prog = document.getElementById("yourcode").value; 
   var mypre = document.getElementById("output"); 
   mypre.innerHTML = 'TRY SOME NEW CODE'; 
   <textarea id="yourcode" cols="40" rows="10">
print("Hello World")
</textarea>
} 
</script>

澄清一下: mypre.innerHtml 工作......但没有用代码清除文本框。我要实现的部分是清除文本区域。如果我删除带有 <textarea id..) 等的部分,则代码可以正常工作,并且还会清除 OUTPUT 控制台。我需要下一点(清除文本区域)工作。

4

2 回答 2

2

textarea您的函数中有一个不必要的 HTML 标记clearit,这导致了错误(在控制台中检查)。它不是必需的,因为您已经textarea在 HTML 块中。试试下面(这不是完整的代码clearit实现):

function clearit() {
  var prog = document.getElementById("yourcode").value;
  var mypre = document.getElementById("output");
  document.getElementById("yourcode").value = '';
}
<h3>Try This</h3>
<form>
  <textarea id="yourcode" cols="40" rows="5">
print("Hello World")
</textarea><br />
  <button type="button" onclick="runit()">Run</button>
</form>
<p>Output below</p>
<button type="button" onclick="clearit()">Clear</button>
<pre id="output"></pre>
<!-- If you want turtle graphics include a canvas -->
<div id="mycanvas"></div>

</body>

于 2020-10-09T13:31:42.067 回答
1

您的函数应如下所示:

function clearit(){
    document.getElementById('yourcode').value = '';
    document.getElementById('output').innerHTML = '';
}

你也有太多的脚本标签,删除 clearit() 函数周围的那些。

于 2020-10-09T13:28:38.383 回答