我需要使用jquery将表单数据传递给模式php变量。
form.php
<span id="firstname">Derrick</span>
modal.js
$(document).ready(function(){
$(document).on('click', '.edit', function(){
var first=$('#firstname').text();
$('#edit').modal('show');
$('#efirstname').val(first);
});
});
modal.php
<?PHP $firstname = ??? ?>
<input type="text" style="width:350px;" class="form-control" id="efirstname">
该变量已正确传递到输入文本字段,但我找不到在PHP中使用该变量的方法。