我正在做一个剧院在线预订系统,我将在用户预订时将座位号添加到 mysql 数据库中。
这是我在用户单击按钮 ShowNewSeat 时输出座位 ID 的代码
<input type="button" id="ShowNewSeat" value="Show Selected Seats" name="ShowNewSeat" />
$('#ShowNewSeat').click(function () {
var str = [], seatid;
$.each($('#place li.' + selectingSeatCss + ' a'), function (index, value) {
seatid = $(this).attr('title');
str.push(**seatid**);
});
alert(str.join(','));
})
这段代码让用户看到他点击了什么座位的输出
现在对于 php 文件,我使用了 $_POST[] 但它不起作用,我需要一种在数据库中添加sead变量的方法。
感谢任何帮助家伙...谢谢你