Member 13070493 Ответов: 1

Как получить данные выпадающего списка


это мой код jquery
я хочу получить данные выпадающего списка
When I Have Click On Add Button IT Add "Undeffind" Value In table row
So what is the Solution for this

script type="text/javascript" src="http://code.jquery.com/jquery.min.js">

    $(document).ready(function(){
        $(".add-row").click(function()
		{
            var name = $("#name").val();
            var Relation = $("#Relation").val();
			var Date=$("#Date").val();
			
			var employed=$("#employed option:selected").val();
            var markup = "<tr><td><input type='checkbox' name='record'></td><td>" + name + "</td><td>" + Relation + "</td><td>"+ Date +"</td><td>" + employed +"</td></tr>";
            $("table tbody").append(markup);
        });
        
        // Find and remove selected table rows
        $(".delete-row").click(function(){
            $("table tbody").find('input[name="record"]').each(function(){
            	if($(this).is(":checked")){
                    $(this).parents("tr").remove();
                }
            });
        });
    });

<pre><body>
    <form>
        <input type="text" id="name" placeholder="Family Member Name">
        <input type="text" id="Relation" placeholder="Relation">
		<input type="date" id="Date" placeholder="Date of Birth">
		<select name="Whether Employed" id="#employed" required> 
					<option value ="none">Select Here</option>
					<option value ="YES" text="Yes" Selected="selected">Yes</option>
					<option value ="No" text="No">No</option>
					</select>
    	<input type="button" class="add-row" value="Add Row">
    </form>
    <table>
        <thead>
            <tr>
                <th>Select</th>
                <th>Name</th>
                <th>Relation</th>
				<th>Date OF Birth</th>
				<th>Whether Employed(YES/NO)</th>
			</tr>
        </thead>
        <tbody>
            <tr>
                <td><input type="checkbox" name="record"></td>
                <td>Peter Parker</td>
                <td>peterparker@mail.com</td>
				<td>					</td>
				<td>				</td>
            </tr>
        </tbody>
    </table>
    <button type="button" class="delete-row">Delete Row</button>
</body> 
</html>                                		


Что я уже пробовал:

Когда я нажимаю на кнопку Добавить, он добавляет значение "Undeffind" в строку таблицы
Итак, каково же решение этой проблемы

1 Ответов

Рейтинг:
2

Karthik_Mahalingam

снять # из идентификатора и попробуйте
идентификатор="#занято"

<select name="Whether Employed" id="employed" required>