使用禁用的文本字段提交时,CodeIgniter CSRF错误

时间:2014-12-15 19:50:32

标签: codeigniter csrf csrf-protection

我在使用form_open()创建的导航中有一个搜索表单,以及来自搜索控制器的操作。现在,当我想提交一些内容并禁用表单以显示处理操作站点时,CodeIgniter显示:

遇到错误 不允许您请求的操作。

查看文件4示例:

 <?php echo form_open(array('class' => 'searchform')); ?>
 <input type="text" name="search" value="..." />
 <input type="submit" name="s" value="..." />
 </form>

JS代码:

 $('form.searchform').submit(function()
 {
     $('form.searchform input').attr('disabled', 'true');
 });

0 个答案:

没有答案