如何在codeigniter中以活动形式写提交回报?

时间:2018-02-14 06:00:28

标签: php jquery ajax codeigniter

我想使用onsubmit="return travel_form(this);  积极形式

 <?php echo form_open_multipart('employee/travel/store_travel' ,['id'=>'abc']); ?>

如何使用它。请指导我。

3 个答案:

答案 0 :(得分:2)

你可以这样做:

<?php  array('onsubmit' => "return travel_form(this)"); ?>

答案 1 :(得分:1)

这是另一种方式。

<?php $data = array('id'       =>  'abc', 
                    'onsubmit' =>  'return travel_form(this);');

echo form_open_multipart('employee/travel/store_travel' ,$data); 
?>

答案 2 :(得分:0)

只需将它放在您的第二个参数<属性

<?php 

     $attribute = array(
                    'id' => 'abc',
                    'onsubmit'  =>  'return travel_form(this)'
     );
     echo form_open_multipart('employee/travel/store_travel' , $attribute); 
?>