bonjour,
J'ai un formulaire avec plusieurs saisies à faire dont un choix entre divers occurences en input radio (un seul choix possible). Je souhaiterais que si l'internaute en choisi un en particulier que ca fasse apparaitre automatiquement un formulaire en plus dans ma page jsp
par ex :
choix 1 []
choix 2 []
choix 3 []
Si il choisi choix 1 ou choix 2 ca affiche juste:
le valeur du choix
Si il choisi choix 3 ca ajouterai automatiquement :
systolique : |______|
distolique :|________|
poux: |_________|
temperature: |_________|
J'ai tenté avec
function etape2forward(){
$("#etape2_forward").click(function(){
if( $("[name='etatVisuel']:checked").val()!=4)
{
$("#systolique").hide();
$("#digsystolique").hide()
$("#poux").hide()
$("#temperature").hide()
$.ajax({
url : '/GHopital/urgence/save',
type : 'POST',
data : { "idPatient": $("#idPatient").val(),
"etatVisuel":$("[name='etatVisuel']:checked").val()
},
success : function(idUrgence){
window.location="#/urgence/read/"+idUrgence;
}
});
}
Mais cela ne fonctionne pas malheureusement.
J'ai un formulaire avec plusieurs saisies à faire dont un choix entre divers occurences en input radio (un seul choix possible). Je souhaiterais que si l'internaute en choisi un en particulier que ca fasse apparaitre automatiquement un formulaire en plus dans ma page jsp
par ex :
choix 1 []
choix 2 []
choix 3 []
Si il choisi choix 1 ou choix 2 ca affiche juste:
le valeur du choix
Si il choisi choix 3 ca ajouterai automatiquement :
systolique : |______|
distolique :|________|
poux: |_________|
temperature: |_________|
J'ai tenté avec
function etape2forward(){
$("#etape2_forward").click(function(){
if( $("[name='etatVisuel']:checked").val()!=4)
{
$("#systolique").hide();
$("#digsystolique").hide()
$("#poux").hide()
$("#temperature").hide()
$.ajax({
url : '/GHopital/urgence/save',
type : 'POST',
data : { "idPatient": $("#idPatient").val(),
"etatVisuel":$("[name='etatVisuel']:checked").val()
},
success : function(idUrgence){
window.location="#/urgence/read/"+idUrgence;
}
});
}
Mais cela ne fonctionne pas malheureusement.