html form select
<!-- O segundo valor estará selecionado inicialmente -->
<select name="select">
<option value="valor1">Valor 1</option>
<option value="valor2" selected>Valor 2</option>
<option value="valor3">Valor 3</option>
</select>
html form select
<!-- O segundo valor estará selecionado inicialmente -->
<select name="select">
<option value="valor1">Valor 1</option>
<option value="valor2" selected>Valor 2</option>
<option value="valor3">Valor 3</option>
</select>
saber value ao escolher combobox php
$(document).ready(function(){
$(document).on('click', '#vervalor', function(){
let valor_ingresso = $('#cb_ingresso option:selected').val();
let quantidade_ingresso = $('#cb_catinsumo option:selected').val();
let total = (valor_ingresso*quantidade_ingresso);
$('.total').css('display', 'block');
$('#preco_total').html('R$ '+total);
});
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us