看了帮助文档,没看明白
以下是html部分,双击table的tr会触发一个dblclick
<script type="text/javascript">
$("#box1 table tbody tr").dblclick(function(){
// alert($(this).children(":eq(0)").html());
layer.open({
type: 2,
//skin: 'layui-layer-lan',
title: '修改或添加电话记录',
fix: false,
shadeClose: true,
maxmin: true,
area: ['700px', '670px'],
content: "<?php echo site_url('shouye/tanchu')?>",$aa,
});
});
</script>
以下是路由的部分
public function tanchu(){
$data = array(
'aa' => $this->input->post('aa'));
p($data);
}
路由部分怎么获取到$aa的值啊
田心枫