我正在创建一个简单的JavaScript函数,您在表单中输入两个数字,然后该函数确定两个数字的总和是否为素数。这一切都有效,但当函数显示带有document.getElementById(“demo”)。innerHTML和
的消息时,它只在网页上停留一秒然后消失。我想让它保持不变直到你再次点击按钮。我搜索过这个网站和其他网站但却找不到任何东西。
以下是代码:
<!DOCTYPE html>
<html>
<head>
<link href="/prime.css" rel="stylesheet" type="text/css" />
<script>
function prime()
{
// get the values from the form
var x= document.forms["frm1"]["x"].value;
var y= document.forms["frm1"]["y"].value;
//test the values of the form
if (x == "null"|| x=="" || isNaN(x)|| y=="null" || y==""|| isNaN(y)){
alert("You must enter two numbers.");
exit;
}
//change variables to number and add them together
var number = (parseInt(x)+ parseInt(y));
var a="";
var prime = true;
//check to make sure number is not less than one
if (number <= 1){
alert("Sorry " +number+ " is not a prime.");
prime = false;
exit;
}
//check if number is a prime
for (var dividby = 2; dividby <= number / 2; dividby++){
if(number % dividby == 0)
prime = false;
break;
}
//send congratulations
if(prime==true){
a="congratulations " + number + " is a prime!";
}
//send condolences
else{
a="Sorry "+number+ " is not a prime.";
}
document.getElementById("demo").innerHTML=a;
}
</script>
</head>
<body id="elem">
<div class="div"></div>
<div>
<br>
<h1>PRIME NUMBERS</h1>
<p>Please enter two numbers to be added and see if the result is a prime.</p><br>
<form name="frm1" >
<input type="text" name="x">
+ <input type="text" name="y">
<button onclick="prime()">click me</button>
</form>
<br>
<p id="demo"></p>
</div>
</body>
</html>
答案 0 :(得分:3)
问题是您的“点击我”按钮实际上是在提交表单,导致页面重新加载(因为您的<form>
没有action
属性,它会提交到同一页面)。 <button>
代码默认为type="submit"
。要使其不是提交按钮,您需要更改它:
<button onclick="prime()" type="button">click me</button>
答案 1 :(得分:1)
我刚刚尝试了代码,结果很简单:单击按钮时会发布表单。
在onClick按钮上,写onClick =“return prime();”并添加
return false;
在你的javascript函数中。
答案 2 :(得分:0)
在表单标记中,只需添加onsubmit =“return false;”像这样 -
<form name="frm1" onsubmit="return false;" >
这会阻止您的表单被提交。