我无法在JavaScript的for循环内的画布中绘制矩形。有时它们可见的时间只有一秒钟,但它们会立即消失。开发人员控制台中没有错误-在Firefox和Chrome上进行了测试,因此问题与浏览器无关。似乎只有我在班上遇到了这个问题,尽管代码完全相同(或根据我的需要进行了微调)。
代码已在多个浏览器上进行了测试,问题本身似乎仅发生在我的笔记本电脑/浏览器上-除了一些错别字等,其他同事都没有遇到此问题。
function Draw() {
var l = liczba.value; // user-input based loop control
var xpos = ypos = 300; // Left side rectangles starting drawing position
var xneg = 600, yneg = 300; // Right side rectangles starting drawing position
var canvas = document.getElementById('image');
var context = canvas.getContext('2d');
context.fillStyle = 'red';
for(var i = 0; i < l; i++) {
context.fillRect(xpos, ypos, 100, 100);
context.strokeRect(xpos, ypos, 100, 100);
console.log("Left Canvas Painted!"); // Debug
context.fillRect(xneg, yneg, 100, 100);
context.strokeRect(xneg, yneg, 100, 100);
console.log("Right Canvas Painted!"); // Debug
xpos += 50; xneg -= 50; ypos += 50; yneg += 50; // change next canvas' starting position by...
}
}
<body>
<form method="post" id="f" onsubmit="Draw();">
<label>Podaj liczbę figur do narysowania: </label>
<input type="text" name="liczba" id="liczba">
<input type="submit" name="send" id="send" value="Zatwierdź">
</form>
<canvas id="image" width="1200" height="800">Canvasy nie działają</canvas>
</body>
答案 0 :(得分:0)
尝试将按钮从“提交”按钮更改为普通按钮,并在单击事件上调用Draw()。
<input type="button" onclick="Draw()" name="send" id="send" value="Zatwierdź">
答案 1 :(得分:0)
这个问题的答案非常简单,这要归功于@jcbbdrn-我的一个小疏忽。由于在提交表单时重新加载页面,整个画布都冲进了马桶。实施常规按钮并为其分配onclick事件后,问题已解决。