3 回答

TA貢獻(xiàn)1841條經(jīng)驗 獲得超3個贊
您可以用作class選擇器,因為這對于多個元素來說是相同的。使用 jQuerydata來存儲索引。
$i=0;
foreach ($form as $value) {
$input = '<input type="number" class="percentage" data-index="'.$i.'" value="'.$value->persentase.'" min="0" max="100" title="Progres">';
$inputdnone = '<input type="number" id="persentase'.$i.'" min="0" max="100" value="'.$value->persentase.'">'; //this input should not appear in view
$i++;
}
在jQuery部分,不需要使用循環(huán),只需為percentage類編寫更改函數(shù)。每當(dāng)輸入值更改時都會觸發(fā)此操作:
$(".reportsForApps").on("change", ".percentage", function(){ // 'parentElementId' should be replaced with actual parent element id.
var tbpersentase = $(this).val();
var index = $(this).data("index");
$('#persentase'+index).val(tbpersentase);
});

TA貢獻(xiàn)1796條經(jīng)驗 獲得超4個贊
您必須使用change() 函數(shù)在每次#formJum 值更改時執(zhí)行該代碼。
如果您在每次輸入更改中正確處理這些事件處理程序,也會更好。

TA貢獻(xiàn)1829條經(jīng)驗 獲得超7個贊
添加數(shù)據(jù)類型 attrdata-group="tbpersentase"并在函數(shù)中調(diào)用它
$input = null;
$inputdnone = null;
foreach ($form as $key => $value) { // you could also use $key value for increment
$input .= '<input type="number" data-group="tbpersentase" id="tbpersentase'.$key.'" min="0" max="100" value="'.$value.'" title="Progres">';
$inputdnone .= '<input type="hidden" id="persentase'.$key.'" min="0" max="100" value="'.$value.'">'; //this input should not appear in view
}
// place in html to echo results of dynamically created inputs from DB info
<?=$input?>
<?=$inputdnone?>
// JQuery 3.4.1
$( "input[data-group='tbpersentase']" ).change(function() {
var $this = $(this).val(); // get users value of the changing input field
var tbpersentaseID = $(this).attr('id'); // get the changing input fields ID so we can remove IDs alpha chars
var getID = tbpersentaseID.replace(/[^0-9]/g,''); // declare a new variable containing the numbers for the selected ID
var persentaseID = 'persentase' + getID; // Concatenate desired alpha ID name to selected key value
$("#"+persentaseID).val($this); // set value
});
在 chrome 中進(jìn)行測試,并將 的值更改#persentase為在 中輸入的值#tbpersentase,但保留 中的原始 ID #persentase。希望這就是您想要實現(xiàn)的目標(biāo)。
另外,如果您想知道從數(shù)據(jù)庫中獲取了多少行,請count()
在 php.ini 中使用。
$form_count = count($form);
- 3 回答
- 0 關(guān)注
- 179 瀏覽
添加回答
舉報