Tanggal -6ren">
gpt4 book ai didi

php - 选中时在文本字段对话框中显示值

转载 作者:行者123 更新时间:2023-11-28 21:03:17 24 4
gpt4 key购买 nike

这是复选框

<input id="c1" type="checkbox" name="hour[]" class="create-daily" value="1" /><br />
<input id="c2" type="checkbox" name="hour[]" class="create-daily" value="2" /><br />
<input id="c3" type="checkbox" name="hour[]" class="create-daily" value="3" /><br />

我有一个对话框

<div id="form_input" title="Konfirmasi">
<?php $data['hour'] = $this->input->post('hour');?>
<table>
<?php echo form_open('booking/ok'); ?>
<input type="hidden" value='' id="id" name="id">
<input type="hidden" value="<?php echo $sdate?>" id="sdate" name="sdate" />
<?php echo "Anda memesan room : <br/>Tanggal :<b> ".$sdate."</b><br>";?>
Jam : <b><span class="jambooking"></span></b>
<tr>
<td>
<div class="element">
<label class="Norm">Jam:</label>
<input type="text" name="jam" class="jambooking" id="jam" minlength="2" value="" />
</div>

<label class="Norm">User:</label>
<input type="text" name="user" class="required text" minlength="2" />
</div>

我有 JavaScript

$(".create-daily").live("click",function(){
if ($(this).attr("checked")){
//var date = $(this).attr("date");
//$('#date').val(date);
$( "#form_input" ).dialog( "open" );
$(".jambooking").html( $(":checked").val());
}
});

我使用跨度和输入,并将类设置为jambooking。当我选中一个复选框并显示一个对话框时,跨度显示一个值。

当我设置为输入类 jambooking 时,该值不会显示。

如何将值加载到文本字段?

最佳答案

尝试:

$(".create-daily").live("click",function(){
if ($(this).is(":checked")){
var checkedVal = $(this).val();
//$('#date').val(date);
$( "#form_input" ).dialog( "open" );
$("span.jambooking").html(checkedVal); //for span
$("input.jambooking").val(checkedVal); //for textbox
}
});

关于php - 选中时在文本字段对话框中显示值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10492653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com