求求高手,怎样给两个表格定义不同的的CSS,这个css是链接特效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求求高手,怎样给两个表格定义不同的的CSS,这个css是链接特效相关的知识,希望对你有一定的参考价值。
连接特效的代码是:<style TYPE="text/css"> <!-- A:linktext-decoration:none A:visitedtext-decoration:none; color:0000ff A:hover color: #ff0000;text-decoration:underline --> </style> 最好能给我个示例,谢谢
参考技术A 其实很简单,定义两个class样式表,就行了。 样式表(具体样式自己调整): .table1 /*正常样式*/ text-decoration:none; .table1 A:link .table1 A:visitedcolor:#0000ff; .table1 A:hover color: #ff0000; .table2 /*正常样式*/ margin-top:20px; text-decoration:none; .table2 A:link .table2 A:visited color:red; .table2 A:hover color: blue; html元素部分: <table class="table1"> <thead> <tr> <th> name </th> <th> info </th> </tr> </thead> <tbody> <tr> <td><a href="#">nishi</a></td> <td><a href="#">nishi info</td> </tr> </tr> </tbody> </table> <table class="table2"> <thead> <tr> <th> name </th> <th> info </th> </tr> </thead> <tbody> <tr> <td><a href="#">nishi</a></td> <td><a href="#">nishi info</td> </tr> </tr> </tbody> </table> 参考技术B <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style TYPE="text/css"> .a a:linktext-decoration:none; color:#F30; .a a:visitedtext-decoration:none; color:#900; .a a:hover color:#F93;text-decoration:underline .b a:linktext-decoration:none; color:#06F; .b a:visitedtext-decoration:none; color:#036; .b a:hover color:#0CF;text-decoration:underline </style> </head> <body> <div class="a"><a href="#">aaaaa</a></div> <div class="b"><a href="#">bbbbb</a></div> </body> </html> 定义.a .b两种不同的样式 用ID也可以,就可以实现本回答被提问者采纳我怎样才能有两个不同的表格视图单元格,总是成对的,显示在同一个表格视图中?
【中文标题】我怎样才能有两个不同的表格视图单元格,总是成对的,显示在同一个表格视图中?【英文标题】:How can I have two different table view cells, always in a pair, displayed in the same tableview? 【发布时间】:2019-05-07 22:39:29 【问题描述】:我想将两个不同的tableViewCells
放在同一个tableView
中,这样它们总是成对出现。第一个tableViewCell
应显示用户可调整的开始时间和结束时间。 (可能是datePicker
)第二个tableViewCell
应该显示一个textField
,它也是可编辑的。 tableViewCells
都应该有一个小按钮,可以检查或不检查。我想将该数据(时间、文本、按钮状态)存储在某处。
我为两个单元格设置了一个结构为dataType
,并创建了一个数组。我还设置了cellForRowAt
,但在运行应用程序时出现错误。
创建数据类型:
struct ScheduleCell
var id: Int
var buttonState: Bool
var text: String
var time01: String
var time02: String
存储数据的地方:
var scheduleCellEntries: [ScheduleCell]! = [ScheduleCell(id: 2, buttonState: false, text: "Test", time01: "12:30", time02: "12:20"), ScheduleCell(id: 2, buttonState: false, text: "Test", time01: "12:30", time02: "12:20"), ScheduleCell(id: 2, buttonState: false, text: "Test", time01: "12:30", time02: "12:20"), ScheduleCell(id: 2, buttonState: false, text: "Test", time01: "12:30", time02: "12:20")]
分配行数:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
var count: Int?
if tableView == scheduleTableView
count = scheduleCellEntries.count * 2
return count!
将数据提取到单元格中:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
if tableView == scheduleTableView
if indexPath.row % 2 != 0
let cell = tableView.dequeueReusableCell(withIdentifier: "scheduleCell", for: indexPath) as! scheduleTableViewCell
cell.scheduleTextField.text = scheduleCellEntries[indexPath.row].text
return cell
else
let cell = tableView.dequeueReusableCell(withIdentifier: "scheduleDateCell", for: indexPath) as! ScheduleDateTableViewCell
return cell
当我运行应用程序时,我收到以下错误 Thread 1: Fatal error: Index out of range
!
【问题讨论】:
您将count * 2
作为行数返回是正确的,但是当您访问数组时,您需要将row
除以2,否则您尝试访问的索引不会不存在。就我个人而言,我会创建一个包含所有必需 UI 元素的单元格,而不是尝试创建两个单元格。
使用您需要显示的数据创建一个 ScheduleCell。因为 numberOfRowsInSection 无法猜测您要做什么。如果它与某个参考值匹配,您将显示它,然后您可以更改 tableviewcell 演员表
为什么将数据分成 2 个单元格很重要?如果这些单元格总是组合在一起,我建议创建一个包含所有必要元素的单元格。在这种情况下,您将拥有 numberOfRowsInSection = scheduleCellEntries.count
【参考方案1】:
问题是您在 scheduleCellEntries
中有 X 条记录,但是自从您返回 scheduleCellEntries.count * 2
以来,您的表格中的单元格数量是两倍。在cellForRowAt
中,而不是使用indexPath.row
来访问scheduleCellEntries
中的数据,您应该使用indexPath.row / 2
,因此当表请求第0 行和第1 行的数据时,会选择相同的数据。
我对您的示例代码稍作改动,添加一个具有适当索引的变量来获取您的数据let indexOnData = indexPath.row / 2
并在scheduleCellEntries
上使用它。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
if tableView == scheduleTableView
let indexOnData = indexPath.row / 2
if indexPath.row % 2 != 0
let cell = tableView.dequeueReusableCell(withIdentifier: "scheduleCell", for: indexPath) as! scheduleTableViewCell
cell.scheduleTextField.text = scheduleCellEntries[indexOnData].text
return cell
else
let cell = tableView.dequeueReusableCell(withIdentifier: "scheduleDateCell", for: indexPath) as! ScheduleDateTableViewCell
return cell
【讨论】:
以上是关于求求高手,怎样给两个表格定义不同的的CSS,这个css是链接特效的主要内容,如果未能解决你的问题,请参考以下文章