- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Codeigniter 框架,我正在加载一个带有 PHP foreach 循环的 HTML 表格。该表最终可能有很多行。每行都有一个索引。该表是可滚动的,因此用户可以访问加载表时不可见的行。用户能够编辑特定行。
目前,在执行编辑后,我正在重新加载表格,以便用户可以看到他的更改。但是,该表是从行索引 1 开始加载的;这意味着被编辑的行索引 X 可能不在屏幕上,用户需要滚动才能再次找到它。
我希望能够加载表格,以便编辑的行(行索引 x)显示在显示屏的顶部。用户仍然可以向前或向后滚动以访问之前或之后的行。
我已经搜索了很长时间但没有找到任何帮助;也许我的术语是错误的。我倾向于在没有 jquery 的情况下执行此操作,因为我尝试仅使用纯 HTML、PHP、CSS。
如有任何帮助,我们将不胜感激。
<div id="register_wrapper">
<!-- Show item entry box -->
<?php echo form_open( "receivings/add",array( 'id'=>'add_item_form')); echo form_input(array('name'=>'item','id'=>'item','size'=>'60')); ?>
</form>
<!-- Receiving Items List -->
<table id="register">
<thead>
<tr>
<th style="text-align:left;">
<?php echo $this->lang->line('common_delete'); ?>
</th>
<th style="text-align:center;">
<?php echo $this->lang->line('DynamicKit'); ?>
</th>
<th style="text-align:center;">
<?php echo $this->lang->line('items_category'); ?>
</th>
<th style="text-align:center;">
<?php echo $this->lang->line('items_item_number'); ?>
</th>
<th style="text-align:center;">
<?php echo $this->lang->line('sales_item_name'); ?>
</th>
<th style="text-align:right;">
<?php echo $this->lang->line('recvs_cost'); ?>
</th>
<th style="text-align:right;">
<?php echo $this->lang->line('sales_edit'); ?>
</th>
<th style="text-align:right;">
<?php echo $this->lang->line('sales_quantity'); ?>
</th>
<?php if ($mode !='purchaseorder' ) { ?>
<th style="text-align:center;">
<?php echo $this->lang->line('items_dluo'); ?>
</th>
<?php } ?>
<th style="text-align:right;">
<?php echo $this->lang->line('sales_discount'); ?>
</th>
<th style="text-align:right;">
<?php echo $this->lang->line('sales_total'); ?>
</th>
</tr>
</thead>
<tbody id="cart_contents">
<?php $newcart='N' ; if(count($cart)==0) { $newcart='Y' ; ?>
<tr>
<td colspan='11'>
<div class='warning_message' style='padding:7px;'>
<?php echo $this->lang->line('sales_no_items_in_cart'); ?>
</div>
</tr>
</tr>
<?php } else { // if entire receipt do not reorder the cart; otherwise show in reverse order so that newly added items come out on top switch ($data[ 'entire_receipt']) { case 'Y': $foreach=$ cart; break; case 'N': default: $foreach=a rray_reverse($cart,
true); } // read cart foreach ($foreach as $line=>$item) { // get item info $cur_item_info = $this->Item->get_info($item['item_id']); // point out that this is a dynamic kit constructed at run time. Let the user enter the parts // making up the kit and thier price $DynamicKit_settext = ' '; if
($cur_item_info->DynamicKit == 1) { $DynamicKit_settext = 'OUI'; } else { $DynamicKit_settext = ' '; } echo form_open("receivings/edit_item/$line"); ?>
<tr>
<!-- Output delete button -->
<td>
<?php echo anchor( "receivings/delete_item/$line", '['.$this->lang->line('common_delete').']');?>
</td>
<!-- Output Dynamic Kit indicator -->
<td style="align:center;font-weight:bold;color:#161FDA">
<?php echo $DynamicKit_settext ?>
</td>
<!-- Output category -->
<td style="text-align:center;">
<?php echo $item[ 'category']; ?>
</td>
<!-- Output item number -->
<td style="text-align:center;">
<?php echo $item[ 'item_number']; ?>
</td>
<!-- Output decription and qty in stock -->
<td style="text-align:center;">
<?php echo $item[ 'name']; ?>
</td>
<?php if ($items_module_allowed) { ?>
<td style="text-align: right">
<?php echo form_input(array( 'name'=>'price', 'value'=>$item['price'], 'style'=>'text-align:right', 'size'=>'6')); ?>
</td>
<?php } else { ?>
<td style="text-align: right">>
<?php echo $item[ 'price']; ?>
</td>
<?php echo form_hidden( 'price',$item[ 'price']); ?>
<?php } ?>
<!-- output update item box -->
<td style="text-align: right">
<?php echo form_submit( "edit_item", $this->lang->line('sales_edit_item'));?>
</td>
<!-- Output quantity -->
<td style="text-align: right">
<?php echo form_input(array( 'name'=>'quantity', 'value'=>number_format($item['quantity'], 2), 'style'=>'text-align:right', 'size'=>'3')); ?>
</td>
<!-- Output DLUO -->
<?php if ($mode !='purchaseorder' ) { ?>
<td style="text-align: center">
<?php if ($cur_item_info->dluo_indicator == 'Y') { echo anchor ( 'items/dluo_form/'.$cur_item_info->item_id.'/DR', $this->lang->line('items_dluo') ); } else { echo ' '; } ?>
</td>
<?php } ?>
<!-- output discount field -->
<td style="text-align: right">
<?php echo form_input(array( 'name'=>'discount', 'value'=>$item['discount'], 'style'=>'text-align:right', 'size'=>'3')); ?>
</td>
<!-- output price field without tax -->
<td style="text-align: right">
<?php echo to_currency($item[ 'price']*$item[ 'quantity']-$item[ 'price']*$item[ 'quantity']*$item[ 'discount']/100); ?>
</td>
</tr>
<tr style="height:3px">
<td colspan=10 style="background-color:#EEFFFF"></td>
</tr>
</form>
<?php } } ?>
</tbody>
</table>
</div>
最佳答案
给你的表格行 ID
<tr id="Item-<?=$item['item_id']?>">
然后用URL中的id重新加载
http://example.com/segment1/segment2/#Item-123
这应该使浏览器滚动到表格的右行。
希望这对您有所帮助 - 祝您好运!
关于php - 放置一个 HTML 表格,使行索引 X 位于标题正下方的显示顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34632326/
我附上了一个我尝试使用 html/css 实现的示例(如果您看不到图像:名字和姓氏,然后第二行是职位描述)。我希望所有文本(两行)在一个 div 中强制对齐(左和右),但我不确定这是否可能。我尝试了一
我想使两个 h1 元素成为 div 上的标题/页眉。所以每个都在特定的 div 之上。 Youtube Achievements
我想让每个 EditText 对象都有自己的标题,就像 Pure Android 指南中那样 (screenshot) 这个东西有原生支持吗?我想他们也可能会使用带有部分的 ListView ,但这对
是否可以像 UITableView headerView 一样创建 UICollectionView 标题 View ?我的意思是整个集合 View 的标题 View ,而不是每个部分的重复 View
我一直在遵循有关排版的 Google 官方 Material 设计指南 (http://www.google.com/design/spec/style/typography.html),但我发现它们
我目前正在尝试找到可以帮助我从视频文件中提取元数据或信息的 python 库,例如 [ mp4, Mkv, Avi, WebM, mpg ] 格式为例。 我主要从视频文件中提取的主要数据是 [标题、描
你好, 这是我正在尝试做的: 将每个缩略图的内容(img + 标题)居中。我的 img 必须是 span3,标题必须是 span4。 这是我的问题: 我可以获取内容中心,或者标题 float 在 im
我有一个带有导航栏的应用程序,可以从一个 View Controller 导航到下一个 View Controller 。在某些模拟器和设备上导航到下一个 View Controller 时,后退按钮
我遇到了一些非常酷的 t-sql,可以从一个 t-sql 查询中的选定行生成一个逗号分隔的列值列表: SELECT @MyList = ISNULL(@MyList,'') + Title + ',
请确保将 HTML heading 标签只用于标题。不要仅仅是为了生成粗体或的文本而使用标题。 搜索引擎使用标题为您的网页的结构和内容编制索引。 因为用户可以通过标题来快速浏览您的网页,所以用标
我正在使用 wkhtmltopdf 将 html 转换为 pdf。 我想在每个页面中添加标题,但它只显示在第一页(目录)中。 我使用的命令是 "C:\Program Files\wkhtmltopdf
如何使用 ggplot2 显示观察的方向(标题)?有没有办法调整shape=17 (三角形)以便它“指向”下一次观察? 示例代码 library(ggplot2) dat % pivot_wide
我尝试在 cocoa 应用程序中显示/隐藏标题栏。我使用以下代码: if ([window styleMask]==NSResizableWindowMask) { [wind
我有这样的 HTML 标题 http://s1.postimg.org/4ebyk3qwv/image.png 当我编写这段代码时: document.getElementById("TL85_1_
我叫麦克。谢谢你的帮助。 在Wordpress中,我们已经设计了我们的网站,以便在Facebook调试器中og数据尽可能接近youtube。尽管如此,在Facebook上共享视频的方式还是不同的。尽管
从 web 应用程序的客户端,我点击了服务器端路由,它只是第三方 API 的包装器。使用分派(dispatch),我试图让服务器端请求返回 exact header 和第三方 API 对客户端 AJA
从 web 应用程序的客户端,我点击了服务器端路由,它只是第三方 API 的包装器。使用分派(dispatch),我试图让服务器端请求返回 exact header 和第三方 API 对客户端 AJA
我是 SAPUI5 的新手,在导航、侧边栏和标题方面遇到一些问题。我想开发一个带有标题和侧边栏的应用程序。我为此使用“ToolPage”。每个页面都包含工具页,如下所示:
我最近在为客户做的项目中被介绍给Go。他们已经建立了代码库,需要进行一些更改。 我注意到所有的方法,结构等等都有一些奇怪的类似于标题的注释,如下所示: // SomeType ... type Som
我创建了一个采用整个屏幕布局的标题布局(xml 文件)... 我还创建了一个 listView 并将此 header_layout 添加到 listView 中: LayoutInflater inf
我是一名优秀的程序员,十分优秀!