selectオプションの値の変更に応じて、テキストボックスの表示と表示するテキストボックスの数がajaxで変更されます。ただし、送信ボタンでそのテキストボックスを検証しようとしました。しかし、そのテキストボックスの値は、送信ボタンをクリックしている間は保持されません...jquery ajaxレスポンス・ポスト値のテキストボックスdiv
私の質問は、ajaxの応答divは、送信中にその値を保持することはできません?
Ajaxのレスポンスのdiv:
<?php
foreach ($technical_skill as $skills){
?>
<div class="form-group col-md-12">
<div class="col-md-4">
<label for="bsl"><?php echo $skills['techskills'];?></label>
</div>
<div class="col-md-8">
<input type="text" class="form-control technicalskill" name = "technicalskill[<?php echo $skills['id']; ?>]" id="bsl">
</div>
</div><?php
}
?>
のjQueryのAjax:
$('#tskill').click(function(){
var parentid = $(this).val();
var text = $('option:selected', this).text();
$.ajax({
type:"POST",
url:"index.php",
data:{parentid:parentid},
success:function(response){
if(parentid == ''){
$('#tech_head').css('display','none');
}else{
$('.tech_skill').html(response);
$('.tech_group').text('Technical Skill: '+text);
$('.hide-div').css('display','block');
}
}
});
});
はあなたが投稿することができて、あなたのjQueryを使用するよりも、あなたのコード
ですあなたのコード? –