将提示结果通过电子邮件发送给我? (JavaScript的)

时间:2015-11-22 05:34:43

标签: javascript

我正在编写一些代码,以便在网页的开头部分进行操作,我希望提示您向访问者提出几个问题(在每个问题之后,提示会关闭,或者根据提示打开新的问题)在答案)。我希望通过电子邮件将这些提示的结果发送给我。我该怎么办?
我的代码示例:

var q = prompt("A five digit number?");
  if (q.length === 5) {
    var pTwo = prompt("Now a 2 digit number?");
    if (pTwo.length === 2) {
      document.write("thank you!");
    } else {
      document.write("Incorrect output");
    }
  } else {
    var con = prompt("Are you sure?");
    if (con === "yes") {
      document.write("thank you anyways");
    } else {
      document.write("Refresh the page to respond.");
    }
  }

0 个答案:

没有答案