gpt4 book ai didi

php - JQuery Checked Selector on a modal-box 并将其返回到页面上

转载 作者:可可西里 更新时间:2023-10-31 23:22:50 27 4
gpt4 key购买 nike

我想要做的是,将模式框上每个复选框上选中的值返回到文本框。这个问题与 this one 非常相似, 但问题的目的是不同的。所以请看看他们两个。 :)

我有初始化模态框的代码:

<script>
var grid_modal_options = {
height: 'auto',
width: '80%',
modal: true
};
function showProductsModalBox() {
$("#products_modal_box").dialog(grid_modal_options);
$("#products_modal_box").parent().appendTo('form:first');
}
</script>

<div id="products_modal_box" title="Products" style="display: none;">
<div class="in">
<div class="grid-12-12">
<form id="products_modal_box_form" action="#" method="post">
<a href=\"javascript:;\" onclick=\"$('#products_id_textbox').val(\"input[name='checkedID[]']:checked\");$('#products_modal_box').dialog('close')();\">Submit</a>
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>Product</th>
</tr>
</thead>
<!-- Query for read mysql goes here (I skipped this line because it's not the main thing I'm gonna ask since it's run well) /-->
<tbody>
<?php
//read the results
while($fetch = mysqli_fetch_array($r)) {
print "<tr>";
print " <td><input type='checkbox' name='checkedID' value='" . $fetch[0] . "' /></td>"; //--> How to get the value of $fetch[0], collect it and return to a textbox?
print " <td>" . $fetch[0] . "</td>"; //$fetch[0] == Product ID
print "</tr>";
}
?>
</tbody>
</table>
</form>
</div>
</div>
</div>

正如您在上面看到的,我正在尝试使用 pseudo-selector函数:input[name='checkedID[]']:checked 但返回值失败。还是我遗漏了一些代码?

这里是用于返回在模态框上选中的值的文本框:

<input type='text' id='products_id_textbox' name='products_id_textbox' />
<a href='#' onclick='showProductsModalBox(); return false;'>Choose products</a>

能够显示模态框的代码。但是如何将用户从每个文本框中选择的“Product”返回给文本框products_id_textbox呢?谢谢。

最佳答案

用这段代码解决的问题:

<script>
$("input#checkedID").change(function () {
var str = "";
$("input:[name='checkedID[]']:checked").each(function () {
str += $(this).val() + ", ";
});
$("input#products_id_textbox").val(str);
})
.trigger('change');
</script>

以及仅用于关闭模态框的按钮的修改:

<a href=\"javascript:;\" onclick=\"$('#products_modal_box').dialog('close')();\">Submit</a>

那个函数叫做 :checked Selector .

非常感谢,希望对您有所帮助...:)

关于php - JQuery Checked Selector on a modal-box 并将其返回到页面上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12928677/

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