首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

!CI框架中怎么使用一个form两个提交按钮

2013-08-04 
求助!CI框架中如何使用一个form两个提交按钮?求教,CI框架中如何使用一个form两个提交按钮呢?麻烦各位了!代

求助!CI框架中如何使用一个form两个提交按钮?
求教,CI框架中如何使用一个form两个提交按钮呢?麻烦各位了!
代码如下:
<script>
             $(document).ready(function() {
                $('#fileData').dataTable( {
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]],
"sPaginationType": "full_numbers",
                    "aaSorting": [[ 0, "desc" ]],
                    "iDisplayLength": <?php echo ROWS_PER_PAGE; ?>,
"bJQueryUI": true,
"sDom": '<"H"frlT><"clear">t<"clear"><"F"ip>',
//<"H"T><"clear">
//"sDom": '<"top"i>rt<"bottom"flp><"clear">',
'bProcessing'    : true,
'bServerSide'    : true,
'sAjaxSource'    : '<?php echo base_url(); ?>index.php?module=order&view=getdatatableajax',

'fnServerData': function(sSource, aoData, fnCallback)
{
  $.ajax
  ({
'dataType': 'json',
'type'    : 'POST',
'url'     : sSource,
'data'    : aoData,
'success' : fnCallback
  });
},
"oTableTools": {
"sSwfPath": "smlib/media/swf/copy_csv_xls_pdf.swf",
"aButtons": [
// "copy",
"csv",
"xls",
{
"sExtends": "pdf",
"sPdfOrientation": "landscape",
"sPdfMessage": ""
},
"print"
]
},
"oLanguage": {
  "sSearch": "Filter: "
},
"aoColumns": [
                      { "sClass": "center", "bSortable": false}, 
  null,
  null,
  null,
  null,
  null,
  null,
  null,
  { "bSortable": false }
],
"aaSorting": [[1, 'asc']]
                } );


                

            } );
                    
</script>

<script language="Javascript">  
function cc(N,bool){  
  var aa = document.getElementById(N).getElementsByTagName("input");
  for (var i=0; i<aa.length; i++){
  if (aa[i].type=="checkbox")
aa[i].checked = bool==1 ? true : (bool==0 ? false : !aa[i].checked);
  }  
}

</script>
        
<div id="body_section">
<!-- Errors -->
<?php if ($message) { echo "<div class="yellow_bar">".$message."</div>"; } ?>
<div id="body_section_inner">
<div class="contentPageWrapper">

<div class='mainInfo'>

<h1><?php echo $page_title; ?></h1>
<p class="introtext"><?php echo $this->lang->line("list_results"); ?></p>
<center>
    <a class="button blue" href="index.php?module=order" style="margin: 0px 5px 10px 5px;"><?php echo $this->lang->line("all_warehouses"); ?></a>
<?php
foreach($warehouses as $warehouse) {
echo "<a class='button' href='index.php?module=order&view=warehouse&warehouse_id=".$warehouse->id."' style='margin: 0px 5px 10px 5px;'>".$warehouse->name."</a>";
}
?></center>

<?php 
$attribute_form = array('id' => 'form1' );
?>
<?php echo form_open("",$attribute_form);?>
<table id="fileData" cellpadding=0 cellspacing=10 width="100%" class="display">
<thead>
        <tr>
            <th></th>
            <th><?php echo $this->lang->line("date"); ?></th>
<th><?php echo $this->lang->line("reference_no"); ?></th>
            <th><?php echo $this->lang->line("ordersn_o"); ?></th>


            <th><?php echo $this->lang->line("warehouses"); ?></th>
            <th><?php echo $this->lang->line("shipmethod_o"); ?></th>
            <th><?php echo $this->lang->line("orderstatus_o"); ?></th>
            <th><?php echo $this->lang->line("trackingnum_o");?></th>
<!--<th>note</th>-->
            <th style="width:105px; text-align:center;"><?php echo $this->lang->line("actions"); ?></th>
</tr>
        </thead>
<tbody>
<tr>
            <td colspan="8" class="dataTables_empty">Loading data from server</td>
</tr>
        </tbody>
</table>
<?php 
$js1 = 'onmousemove='."showtip('选择要确认的订单,确认订单后,我司将为您的货物进行作业操作')".' onclick="doConfirm()"';
    $js2 = 'onClick=subship()';
?>
<p><?php echo form_button('submitcomfirm', '确认订单',$js1);?>  <?php echo form_button('submitship', '订单发货');?> <a href="<?php echo site_url('module=order&view=add');?>" class="button">添加新订单</a></p>

    <?php echo form_close();?>



</div>
<div class="clr"></div>
</div>
<div class="clear"></div>
</div>
</div>
框架 JavaScript jquery php CI
[解决办法]
判断事件试试
[解决办法]
你直接加两个按钮,然后绑定点击事件,再去处理提交表单

热点排行