Сообщение от zevilz
|
Где тут косяк?
|
Так понятно?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function(){
alert($('#type option:selected').val());
if ($('#type option:selected').val() == '1') {
alert(1);
};
if ($('#type option:selected').val() == '2') {
alert(2);
};
});
</script>
</head>
<body>
<select id="type">
<option disabled selected>Выберите тип</option>
<option value="1">Тип 1</option>
<option value="2">Тип 2</option>
</select>
</div>
</body>
</html>