因此,我使用 php 构建了一个向导,其中一个表单要求用户上传图像。
我已经构建了所有内容,唯一的问题是我必须能够在我的一个 if 语句中说,如果表单是使用 jquery 的 submit() 方法提交的。
所以这里是用户选择图像后在 jquery 中提交表单的代码。
var initUpload = function(){
$('.filebutton').change(function(e){
$("form").submit();
});
};
这就是我的 if 语句的外观。
if($this->input->post('back')){
//Tells me that the user clicked on the back button, and to go back 1 step in the wizard.
}else if(???){
//This is where I would like to say: if form was submitted with jquery.
}else{
//Else the user just clicked "next" and to continue normally.
}
我已经知道的:
使用$this->input->post('back')
我可以检查表单是否使用带有value
BACK 的按钮提交。我有var_dumped $this->input->post()
,但它只返回输入字段的值。