我想使用onsubmit="return travel_form(this);
积极形式
<?php echo form_open_multipart('employee/travel/store_travel' ,['id'=>'abc']); ?>
如何使用它。请指导我。
答案 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);
?>