Jump to content
  • 0

FORM


Alena
 Share

Question

Нужно проверить введен ли в адрес строки число?(!) По-моему нужно использовать isNan, хотя может parseFloat... не знаю, помогите

<html>

<title>Формы</title>

<form name="formname">

<input type="text" name="text1">

<input type="button" name="buttonName" onClick="test()" value="OK">

</form>

<script>

function test()

{

isNaN(text1)

if (formname.text1.value.isNan) // вот в этом месте что-то нужно сделать...

{

ok1=false

alert("Введите число!")

}

else

ok1=true

if (ok1)

alert ("Форма заполнена")

}

</script>

</html>

Edited by Alena
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

IsNAN - проверяет не число. вроде…

А value - всегда текстовое. a parseInt пропустит ошибки если в поле будут не только цифры.

в вашем случае скорее нужно провильное регулярное выражение .

Или

if ((formname.text1.value> "0") && (formname.text1.value < "9999999"))

Edited by hf3
Link to comment
Share on other sites

  • 0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

<style type="text/css">
* {
margin: 0;
padding: 0;
font: 12px Tahoma, Arial, sans-serif;
}

body {
margin: 10px;
}
</style>

<script type="text/javascript">
function test(val) {
var r = /\./g;

if (!isNaN(val)) {
if (r.test(val)) {
alert('я число с плавающей точкой равное ' + parseFloat(val));
} else {
alert('я целое число равное ' + parseInt(val));
}
} else {
alert('я строка');
}
}
</script>
</head>

<body>

<input type="text" name="test" value="" onblur="test(this.value);" />
<input type="button" value="Ну тыкни в меня чтоли..." />

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy