第一頁上有一個(gè)帶有 jquery 腳本的表單,用于添加天數(shù)。如果我只使用一天,我無法獲得我需要的所有信息。但是當(dāng)我添加多天時(shí),我只得到最后一個(gè)條目。我試圖查看我在下一頁 book_gear.php 的表格中預(yù)訂的活動(dòng)的每一天。但到目前為止我只看到了這一活動(dòng)的一天。我認(rèn)為這是因?yàn)槲业?foreach 循環(huán)考慮的是數(shù)組索引而不是數(shù)組中的每個(gè)事件。book_avail.php<?php require_once('../Include/initialize.php'); ?><!doctype html><html> <!--Sets page title in browser--><?php $page_title = 'Schedule'; ?> <!-- Imports header file with necessary scripts --><?php include ('../Include/header.php'); ?><!-- Imports Top navigation bar --><?php include ('../Include/navibar.php'); ?><!-- Imports javascript file to allow arrange by column --><?php include_once ('../Include/sort_by.php'); ?><?php include_once ('../Include/mysql_queries.php');//loads all classesinclude_once ('../Include/class-autoload.inc.php'); ?><script> $(document).ready(function() { var i = 1; $("#add_row").click(function() { $('tr').find('input').prop('disabled',true) $('#addr' + i).html("<td>" + (i + 1) + "</td><td><input type='text' value='Day" + (i + 1) +"' name='event[" + i + "][eventNameInitialQuery]' class='form-control input-md'/></td>\n\ <td><input type='date' name='event[" + i + "][dateFromIntialQuery]' placeholder='date' class='form-control' /></td>\n\ <td><input type='time' name='event[" + i + "][timeFromIntialQuery]' placeholder='time' class='form-control' /></td>\n\ <td><input type='date' name='event[" + i + "][dateToIntialQuery]' placeholder='date' class='form-control' />\n\</td>\n\ <td><input type='time' name='event[" + i + "][timeToIntialQuery]' placeholder='time' class='form-control' />\n\</td>"); $('#tab_logic').append('<tr id="addr' + (i + 1) + '"></tr>'); i++; });});</script><script src="https://code.jquery.com/jquery-3.2.1.js"></script><?php//sets user location or builingif (isset($_SESSION['location'])) {$userLocation = $_SESSION['location']?? '';}$build_set = build_dropdown($userLocation);?>
1 回答

元芳怎么了
TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊
我已經(jīng)做了一個(gè)快速測試,問題是在添加新事件行時(shí)禁用早期輸入。您可以做的就是在禁用輸入之前將輸入的值復(fù)制到隱藏輸入。
- 1 回答
- 0 關(guān)注
- 92 瀏覽
添加回答
舉報(bào)
0/150
提交
取消