将输入转换为整数并打印星号

时间:2015-10-19 17:42:08

标签: javascript

强文您好我必须将文本字段中的输入转换为整数并显示星号,但无法完成...我应该怎么做。

  <body>
    <button onclick="go()">Click Me!!!</button>
    <input id="input" ></input>
    <p id="output">Change Me</p>
  </body>

js file
var i = 0;
var j = 0;

function go(){

var in = parseInt(document.getElementById('input').value,10);
var out = document.getElementById('output');

  if(in>=1 && in<=10)
  {

  for (i<in;i++)
    {
       for (j<i ;j++)
        {
          out.innerHTML = "*";
        }
        console.console.log("\n");
    }
}

0 个答案:

没有答案