我想不pluginn我需要的時候我如果輸入的數據字符以外的任何其他除了數量顯示錯誤消息的按鈕,它檢查的黃金沒有 點擊創建與HTML和jQuery檢查素數頁總理nuber jQuery的邏輯
我寫了這個代碼,但沒有得到結果幫我
<!Doctype Html>
<html>
<head>
\t <title>
\t \t Jquery Tasks
\t </title>
\t <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
\t <script src="jquery-2.1.4.min.js"></script>
\t <script>
\t $(document).ready(function()
\t {
\t // storing number in variable
var number= parseInt($("#txtnum").val());
$("#txtnum").keypress(function (e) {
if (e.which >= 48 || e.which <= 57)
{
};
else
{
$("#error").html("Please enter only number number").show().fadeOut("slow");
return false;
}
});
$("#check").click(function()
{
for (var i = 1; i < number; i++)
{
\t if (number%i==0)
\t {
\t \t res++;
\t };
};
if (res==2)
{
\t $("#error").html("Entered number is a prime number").show().fadeOut("slow");
};
else
{
$("#error").html("Entered number is not a prime number").show().fadeOut("slow");
return false;
};
});
\t </script>
</head>
<body>
\t <table align="center">
\t \t
\t \t <tr>
\t \t <td>
\t \t </td>
\t \t <td align="center">
\t \t <h2>Prime number checking</h2>
\t \t </td>
\t \t <td>
\t \t </td>
\t \t </tr>
\t \t <tr>
\t \t \t <td>
\t \t \t \t Enter Any Number
\t \t \t </td>
\t \t \t <td>
\t \t \t \t <input type="text" id="txtnum">
\t \t \t </td>
\t \t \t <td>
\t \t \t \t <span id="error"> </span>
\t \t \t </td>
\t \t </tr>
\t \t <tr>
\t \t <td>
\t \t </td>
\t \t <td align="center">
\t \t <input type="submit" value="Check" id="check">
\t \t </td>
\t \t <td>
\t \t </td>
\t \t </tr>
\t </table>
</body>
</html>
你有語法錯誤。 – Omidam81