mardi 22 août 2017

How to check if a input value equal to a number using conditions

i asked this question 5 minutes ago however i realized it didnt work so i decided to post all of the code this time.

i need to check if what the user types into the input with id of bath in the html is a number and if it is a number it should then add the number the user types to the bathRoom paragraph and if i isnt a number it should return 'please enter in a number'

if anyone has any suggestions please help me thanks a lot

var house = {}
function House() {

        var Paint = document.getElementById('paint').value;
        var square = document.getElementById('Square').value;
        var Bath = document.getElementById('bath').value;
        var bed = document.getElementById('Bed').value
        var cook = document.getElementById('Cook').value;
        //Get paragraphs to store values
        var paint = document.getElementById('isPaint');
        var squareFeet = document.getElementById('sq_Feet')
        var bathRoom = document.getElementById('bathroom')
        var bedRoom = document.getElementById('BedRoom')
        var kitchen = document.getElementById('kitchen');

        if(Paint == 'Yes' || Paint == 'yes') {
                house['isPainted'] = true;
                paint.innerHTML = msg;

        }
        else if(Paint == 'No' || Paint == 'no') {
                house['isPainted'] = false;
                var msg = 'this house is not painted'
                paint.innerHTML = msg;
        } 
        else if(Paint == '') {
                house['isPainted'] = undefined;
                var msg = 'no details given';
                paint.innerHTML = msg;
        } 
        if(square != '' ) {
                var squareFeetMsg = 'the house is';
                squareFeet.innerHTML = squareFeetMsg + ' ' + square + ' square feet';
                house['squareFeet'] = document.getElementById('Square').value
        }else {
                var squareFeetMsg = 'No Details Given';
                squareFeet.innerHTML = squareFeetMsg;
        }
        if(bath != NaN) {
                var bath = 'there is this many bathrooms :'
                house['bathroom'] = square;
                bathRoom.innerHTML = bath + Bath; 
        }else{
                var bath = 'You need to enter a number';
                bathRoom.innerHTML = bath;

        }
}
<!DOCTYPE html>
<html lang="en">
<head>
        <meta charset="UTF-8">
        <title>House App</title>
        <link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id="conatainer">
        <div id="Full_house">
                <div id="houseDtails">
                                <label for="paint">Is this house painted: </label><br>
                                <input type="text" id="paint" class="Detail" /><br>

                                <label for="Square">How many SQ feet does this have? :</label>
                                <input type="text" id="Square"><br>

                                <label for="bath">How many bathrooms does your house have</label>
                                <input type="text" id="bath"><br>

                                <label for="Bed">How many bedrooms dos your house have</label>
                                <input type="text" id="Bed"><br>

                                <label for="Cook">Does your house have a kitchen</label>
                                <input type="text" id="Cook"><br>

                                <input type="submit" name="" id="sub" class="subm" onclick="House()">
                </div>
                <div id="addDetailsToPage">

                        <p id="isPaint" class="houseDetails"></p>
                        <p id="sq_Feet" class="houseDetails"></p>
                        <p id="bathroom" class="houseDetails"></p>
                        <p id="Bedroom" class="houseDetails"></p>
                        <p id="Kitchen" class="houseDetails"></p>

                </div>
        </div>
</div>
        <script src="House.js"></script>
</body>
</html>



Aucun commentaire:

Enregistrer un commentaire