如何将文本添加到表格中,例如< H5> [英] How to add a text into a table as e.g. <h5>

查看:93
本文介绍了如何将文本添加到表格中,例如< H5>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用以下代码,我可以向现有表添加新行。那个

真的很棒。非常感谢到目前为止帮助我的所有人。

但我的问题是,添加的单元格确实不具有与我添加的第一行相同的样式



我使用JavaScript做的一切我用HTML做的事情除了

添加了JavaScript的文本不是

< h5 class =" style_tableentry_middle">输入中间< / h5>


我猜它只是某种方式

< class =" style_tableentry_middle">输入中间


此外,插入行上的'鼠标悬停'效果也不尽相同。

我试图避免使用< h5>并尝试使用< tr>和< td> - 没有成功

(< tr>和< td>似乎不支持边距,例如margin-left)。


我想我只是必须使用JavaScript添加文本

< h5 class =" style_tableentry_middle"> Entry middle< / h5>

而不是

< class =" style_tableentry_middle">条目中间


但是怎么做?有没有人有什么好主意?

Stefan

========================== ======================== ========


< html>

< style type =" text / css">

h5.style_tabletitle {

font-family:verdana,tahoma,arial,helvetica ,sans-serif;

字体大小:8pt;

font-weight:bold;

颜色:#000000;

margin-left:7;

margin-right:0;

margin-top:5;

margin-bottom: 6;

}


tr.style_tableentry_background {

background-color:#ffcc00;

}


tr.style_tableentry_mouseover {

font-family:verdana,tahoma,arial,helvetica,sans-serif;

字体-size:8pt;

font-weight:normal;

颜色:#000000;

background-color:#ffdd77;

}


h5.style_tableentry_middle {

font-family:verdana,tahoma,arial,helvetica,sans-serif;

font-size:8pt;

font-weight:normal;

颜色:#ff0000;

margin-left:7;

margin-right:7;

margin -top:5;

margin-bottom:6;

}


h5.style_tableentry_right {

font-family:verdana,tahoma,arial,helvetica,sans-serif;

font-size:8pt;

font-weight:normal;

颜色:#0000ff;

margin-left:7;

margin-right:7;

margin-top:5 ;

保证金底部:6;

}

< / style>


< ; script type =" text / javascript">

函数InsertRow(){

var xtable

var xrow

var xcell

xtable = document.getElementById(" MyTable")

//添加行

xro w = xtable.insertRow(2)

xrow.className =" style_tableentry_background"

xrow.onmouseover = function(){this.className =

" style_tableentry_mouseover"}

xrow.onmouseout = function(){this.className =

" style_tableentry_background"}


//添加单元格

xcell = xrow.insertCell(0)

xcell.style.width =" 40%"

xcell.bgColor ="#ff8800"

xcell.innerHTML =""


//添加单元格中间

xcell = xrow.insertCell(1)

xcell.style.width =" 30%"

xcell.className =" style_tableentry_middle"

xcell.innerHTML =" My entry middle"


//正确添加单元格

xcell = xrow.insertCell(2)

xcell.style.width =" 30%"

xcell.className =" style_tableentry_right"

xcell.innerHTML ="我的输入权&

}

< / script>


< body>

< form name =" MyForm">

< table id =" MyTable" width =" 500" border =" 1" align =" center">

< tr>

< td width =" 40%" style =" background-color:#ff8800">

< h5 class =" style_tabletitle">标题leftMiddle< / h5>

< / td> ;


< td width =" 30%" style =" background-color:#cc0000">

< h5 class =" style_tabletitle"> title leftMiddle< / h5>

< / td> ;


< td width =" 30%" style =" background-color:#cc0000">

< h5 class =" style_tabletitle"> title leftMiddle< / h5>

< / td> ;

< / td>

< / tr>


< tr class =" style_tableentry_background"

onMouseover =" className =''style_tableentry_mouseover''"

onMouseout =" className =''style_tableentry_background''">

< td width =" 40%" style =" background-color:#ff8800">

< / td>


< td width =" 30%"> ;

< h5 class =" style_tableentry_middle"> Entry middle< / h5>

< / td>


< td width =" 30%">

< h5 class =" style_tableentry_right">输入权限< / h5>

< / td>

< / tr>

< / table>


< input type =" button" name =" MyButton" value =" Add Row" onClick =

" InsertRow()">


< / form>

< / body>

< / html>


========================== ======================== ========

解决方案

Stefan Mueller写道:

使用以下代码,我可以向现有表添加新行。那真的很棒。非常感谢到目前为止帮助我的所有人。
但我的问题是,添加的单元格确实不像我用HTML添加的第一行那样具有相同的风格。
我做的一切使用JavaScript我用HTML做什么,除了
添加的JavaScript文本不是
< h5 class =" style_tableentry_middle"> Entry middle< / h5>


CSS类名称不得包含下划线。从CSS2语法:


|班级

| :''。''IDENT

| ;

| [...]

| nmstart [a-z] | {nonascii} | {escape}

| nmchar [a-zA-Z0-9-] | {nonascii} | {escape}

| ident {nmstart} {nmchar} *


标识符中的下划线字符已添加到CSS 2.1中。

有趣的是,它已在CSS3中再次删除(句法)。但是,

还没有达到推荐的状态,所以好像不使用下划线字符似乎是好的做法。

[ ...]
< html>


此元素之前缺少DOCTYPE声明,例如


<!DOCTYPE html PUBLIC" - // W3C // DTD HTML 4.01 // EN"

" http://www.w3.org/TR/html4/strict.dtd">

< style type =" ;文本/ CSS">


注意`style''元素必须是'head''元素的子元素。

你可以省略后者元素的可选标签介绍

不完全符合实施的问题。

h5.style_tabletitle {
font-family:verdana,tahoma,arial,helvetica,sans-serif;
font-size:8pt;


`pt''是适合打印输出的单位,不适用于显示设备。

使用'em''或'%'代替,'px ''如果你不关心错误的IE浏览器。

font-weight:bold;


字体:10px粗体Verdana,...,sans-serif;

颜色:#000000;


< http://www.w3.org/QA/Tips/color>


此外,价值应独立于颜色深度:#000

margin-left:7;
margin-right:0;
margin-top:5;
margin-bottom:6;


如果长度不是0,则需要一个单位,这可能是'px''。


< http:// jigsaw.w3.org/css-validator/>

}

tr.style_tableentry_background {
background-color:#ffcc00;


见上文并替换为


背景颜色:#fc0;

}

tr.style_tableentry_mouseover {
[...]


见上文。

background-color:#ffdd77;


这需要至少65536(64k)的颜色深度才能正确显示

(因此,作为清晰易读文本的背景)。尝试坚持使用

真正的Websafe [tm]颜色值,只使用#xyz的三元组x,y,z

= {0,3,..., c,f}其中x,y和z可能具有不同的值。 #xyz将

内部扩展到#xxyyzz,如果适用于当前显示器

设备。

}

h5.style_tableentry_middle {
[...]
}

h5.style_tableentry_right {
[...]
}


见上文。

< / style>

< script type =" text / javascript">


'script''元素必须是'head''或`body''元素的子元素。

见上文。

函数InsertRow(){
var xtable


JS / ECMAScript语句应始终用分号结束

避免不良副作用自动分号插入。

[...]
xtable = document.getElementById(" MyTable")


DOM接口方法的实现,例如

HTMLDocument :: getElementById(),应在使用前测试




< http:/ /pointedears.de/scripts/test/whatami>

//添加行
xrow = xtable.insertRow(2)


同样在这里。

[...]
< / script>

< body>
< form name =" MyForm">


缺少必需的操作属性值。


< http://validator.w3.org/>

< http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you>

< table id =" MyTable" width =" 500" border =" 1" align =" center">


'table''元素的`align''属性已弃用于HTML 4.01

on。这意味着它在HTML 4.01严格,XHTML 1.0严格或

XHTML 1.1中无效。

< tr>
< td width =" 40 %QUOT; style =" background-color:#ff8800">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< / td>
< / tr>


表格不应该(ab)用于布局目的。使用CSS来定位

块元素。


标题('hX''元素,X = [1..6])不应该被滥用实现

更大的字体大小。他们应该反映文件的结构

。如果需要不同的字体大小,请使用CSS字体*属性。


< http://www.w3.org/QA/Tips/>

[...]
< input type =" button" name =" MyButton" value =" Add Row" onClick =
" InsertRow()">




由于此按钮无法在没有客户端的情况下工作

脚本,它应该通过它生成,

最简单的方法是


< script type =" text / javascript">

document.write(

''< input type =" button" name =" MyButton" value =" Add Row"''

+''onclick =" InsertRow()">'');

< / script>

PointedEars


PS:de.comp.lang.javascript存在。


> CSS类名称不得包含下划线。


Ups,我不知道。这意味着我必须用例如''''替换所有''''' - 。

字符'' - ''没问题?正确吗?

但在JavaScript函数中我可以使用''_''。正确?

font-size:8pt;



`pt''是适合打印输出的单位,不是用于显示设备。




嗯,我想在屏幕上有一个单位用于一个像素。但是我想它不会存在除了''px'之外的
,这就像你解释的那样在IE浏览器中错误。

< tr>
< td width =" 40%" style =" background-color:#ff8800">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< / td>
< / tr>



标题('hX''元素,X = [1..6])不应滥用来实现
更大的字体大小。他们应该反映文件的结构。如果需要不同的字体大小,请使用CSS字体*
属性。




我只使用''hX''才能找到相应的文字喜欢

h5.style_tableentry_middle


你已经写了这么多提示,我还没有通过修复我的所有

我页面上的错误。但是,我仍然不知道我要改变什么,所以

添加的单元格(使用JavaScript)确实具有与第一行

行相同的样式我通过HTML添加。


在任何情况下,非常感谢您的所有更正和提示,如果您支持
可以给我一些更具体的提示在如何解决我的问题我

真的很高兴。


再次感谢

Stefan


Stefan Mueller写道:

字符'' - ''适用于[CSS类名]?正确吗?
但在JavaScript函数中,我可以使用''_''。正确?


正确,如CSS2语法和JavaScript参考/ ECMAScript 3规范

说。

< tr>
< td width =" 40%" style =" background-color:#ff8800">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< td width =" 30%" style =" background-color:#cc0000">
< h5 class =" style_tabletitle">标题leftMiddle< / h5>
< / td>
< / td>
< / tr>



标题('hX''元素,X = [1..6])不应滥用来实现
更大的字体大小。他们应该反映文件的结构。如果需要不同的字体大小,请使用CSS字体*
属性。



我只使用''hX''我可以解决相应的文本,如
h5.style_tableentry_middle




您可能不应该这样做。

格式文本不需要特定元素。例如,如果你在CSS

规则中省略了`h5''部分,它几乎适用于任何具有'class''

属性的元素,值'style_tableentry_middle''(应该是

`style-tableentry-middle'')。与'hX''块元素

的区别在于这些元素具有超出其显示范围的结构含义(例如,

用于应用轮廓和自动生成的内容列表),

所以明智地使用它们。选择器的可能性比

只有基于类的名称更多:< http://www.w3.org/TR/CSS2/selector.html>。

所以,恕我直言,一个文件可能有超过'h5''元素但不在
并置表格单元格内。如果你想描述为什么你需要这个

,我可能会有一个更适合你的

方法的建议。


但这真的属于CSS新闻组

(comp.infosystems。 www .authoring.stylesheets

de.comm.infosystems。 www.authoring.misc),或者在

私人电子邮件通信中(如果你愿意的话,我也可以用

德语)。

你已经写了这么多提示,我仍然没有完成修复我页面上的所有
错误。但是,我仍然不知道我要改变什么,以至于添加的单元格(使用JavaScript)确实具有与我通过HTML添加的第一行相同的样式。


请参阅< http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you>。

无论如何,非常感谢所有的更正和提示


欢迎您。

如果您能给我一些更具体的提示,如何解决
我的问题我真的很高兴。




除非你的文件都是有效的,并且有人看过你的所有代码,否则只能是
做出疯狂的猜测。使其有效,发布该测试用例的URI和

我也很乐意再次提供帮助 - 如果仍有必要的话:)

问候,
PointedEars


With the following code I can add a new row to an existing table. That
really works great. Many thanks to all who helped me so far.
But my problem is that the added cells do somehow not have the same style as
the first row which I added by HTML.
I do everything with the JavaScript what I do with HTML except that the
added text with the JavaScript is not
<h5 class = "style_tableentry_middle">Entry middle</h5>

I guess it''s only somehow
<class = "style_tableentry_middle">Entry middle

Also the ''mouseover'' effect on the inserted row is not exact the same.
I tried to avoid using <h5> and tried to use <tr> and <td> - without success
(<tr> and <td> seems not to support margins like e.g. margin-left).

I guess that I just have to add the text with the JavaScript as
<h5 class = "style_tableentry_middle">Entry middle</h5>
instead of
<class = "style_tableentry_middle">Entry middle

But how to do that? Does anyone have any good idea?
Stefan
================================================== ========

<html>
<style type = "text/css">
h5.style_tabletitle {
font-family: verdana, tahoma, arial, helvetica, sans-serif;
font-size: 8pt;
font-weight: bold;
color: #000000;
margin-left: 7;
margin-right: 0;
margin-top: 5;
margin-bottom: 6;
}

tr.style_tableentry_background {
background-color: #ffcc00;
}

tr.style_tableentry_mouseover {
font-family: verdana, tahoma, arial, helvetica, sans-serif;
font-size: 8pt;
font-weight: normal;
color: #000000;
background-color: #ffdd77;
}

h5.style_tableentry_middle {
font-family: verdana, tahoma, arial, helvetica, sans-serif;
font-size: 8pt;
font-weight: normal;
color: #ff0000;
margin-left: 7;
margin-right: 7;
margin-top: 5;
margin-bottom: 6;
}

h5.style_tableentry_right {
font-family: verdana, tahoma, arial, helvetica, sans-serif;
font-size: 8pt;
font-weight: normal;
color: #0000ff;
margin-left: 7;
margin-right: 7;
margin-top: 5;
margin-bottom: 6;
}
</style>

<script type="text/javascript">
function InsertRow() {
var xtable
var xrow
var xcell

xtable = document.getElementById("MyTable")

// Add row
xrow = xtable.insertRow(2)
xrow.className = "style_tableentry_background"
xrow.onmouseover = function() {this.className =
"style_tableentry_mouseover"}
xrow.onmouseout = function() {this.className =
"style_tableentry_background"}

// Add cell left
xcell = xrow.insertCell(0)
xcell.style.width = "40%"
xcell.bgColor = "#ff8800"
xcell.innerHTML = ""

// Add cell middle
xcell = xrow.insertCell(1)
xcell.style.width = "30%"
xcell.className = "style_tableentry_middle"
xcell.innerHTML = "My entry middle"

// Add cell right
xcell = xrow.insertCell(2)
xcell.style.width = "30%"
xcell.className = "style_tableentry_right"
xcell.innerHTML = "My entry right"
}
</script>

<body>
<form name="MyForm">
<table id = "MyTable" width = "500" border = "1" align = "center">
<tr>
<td width = "40%" style = "background-color:#ff8800">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>
</td>
</tr>

<tr class = "style_tableentry_background"
onMouseover = "className = ''style_tableentry_mouseover''"
onMouseout = "className = ''style_tableentry_background''">
<td width = "40%" style = "background-color:#ff8800">
</td>

<td width = "30%">
<h5 class = "style_tableentry_middle">Entry middle</h5>
</td>

<td width = "30%">
<h5 class = "style_tableentry_right">Entry right</h5>
</td>
</tr>
</table>

<input type = "button" name = "MyButton" value = "Add Row" onClick =
"InsertRow()">

</form>
</body>
</html>

================================================== ========

解决方案

Stefan Mueller wrote:

With the following code I can add a new row to an existing table. That
really works great. Many thanks to all who helped me so far.
But my problem is that the added cells do somehow not have the same style
as the first row which I added by HTML.
I do everything with the JavaScript what I do with HTML except that the
added text with the JavaScript is not
<h5 class = "style_tableentry_middle">Entry middle</h5>
CSS class names must not contain underlines. From the CSS2 grammar:

| class
| : ''.'' IDENT
| ;
| [...]
| nmstart [a-z]|{nonascii}|{escape}
| nmchar [a-zA-Z0-9-]|{nonascii}|{escape}
| ident {nmstart}{nmchar}*

The underline character in identifiers has been added in CSS 2.1.
Interestingly, it has been removed again in CSS3 (Syntax). However,
neither has achieved the status of Recommendation yet, so it seems
to be good practice to not use the underline character.
[...]
<html>
A DOCTYPE declaration is missing before this element, such as

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<style type = "text/css">
Note that the `style'' element must be child of the `head'' element.
You omit the tags optional for the latter element which may introduce
problems with not fully conforming implementations.
h5.style_tabletitle {
font-family: verdana, tahoma, arial, helvetica, sans-serif;
font-size: 8pt;
`pt'' is a unit suited for printouts, not for display devices.
Use `em'' or `%'' instead, `px'' if you do not care about buggy IEs.
font-weight: bold;
font: 10px bold Verdana, ..., sans-serif;
color: #000000;
<http://www.w3.org/QA/Tips/color>

Besides, the value should be independent on color depth: #000
margin-left: 7;
margin-right: 0;
margin-top: 5;
margin-bottom: 6;
If the length is not 0, a unit is required which is probably `px'' here.

<http://jigsaw.w3.org/css-validator/>
}

tr.style_tableentry_background {
background-color: #ffcc00;
See above and replace with

background-color: #fc0;
}

tr.style_tableentry_mouseover {
[...]
See above.
background-color: #ffdd77;
This requires a color depth of at least 65536 (64k) to be properly displayed
(and, therefore, serve as background for legible text). Try to stick to
Real Websafe[tm] color values using only a triplet of #xyz with x, y, z
= {0, 3, ..., c, f} where x, y and z may have different value. #xyz will
be internally expanded to #xxyyzz if appropriate for the current display
device.
}

h5.style_tableentry_middle {
[...]
}

h5.style_tableentry_right {
[...]
}
See above.
</style>

<script type="text/javascript">
The `script'' element must be child of the `head'' or `body'' element.
See above.
function InsertRow() {
var xtable
JS/ECMAScript statements should always be ended with a semicolon to
avoid undesired side effects with automatic semicolon insertion.
[...]
xtable = document.getElementById("MyTable")
Implementations of DOM interface methods, such as
HTMLDocument::getElementById(), should be tested
prior to usage.

<http://pointedears.de/scripts/test/whatami>
// Add row
xrow = xtable.insertRow(2)
Same here.
[...]
</script>

<body>
<form name="MyForm">
The required `action'' attribute value is missing.

<http://validator.w3.org/>
<http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you>
<table id = "MyTable" width = "500" border = "1" align = "center">
The `align'' attribute for the `table'' element is deprecated from HTML 4.01
on. This means it is not Valid in HTML 4.01 Strict, XHTML 1.0 Strict or
XHTML 1.1.
<tr>
<td width = "40%" style = "background-color:#ff8800">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>
</td>
</tr>
Tables should not be (ab)used for layout purposes. Use CSS to position
block elements instead.

Headings (`hX'' elements with X = [1..6]) should not be abused to achieve
greater font sizes. They should reflect the structure of the document
instead. If a different font size is needed, use the CSS font* properties.

<http://www.w3.org/QA/Tips/>
[...]
<input type = "button" name = "MyButton" value = "Add Row" onClick =
"InsertRow()">



Since this button does not work without client-side
scripting, it should be generated through it, the
most simple approach being

<script type="text/javascript">
document.write(
''<input type="button" name="MyButton" value="Add Row"''
+ '' onclick="InsertRow()">'');
</script>
PointedEars

P.S.: de.comp.lang.javascript exists.


> CSS class names must not contain underlines.

Ups, I didn''t know. That means I have to replace all ''_'' with e.g. ''-''. The
character ''-'' is fine? Correct?
But in JavaScript functions I can use ''_''. Correct?

font-size: 8pt;



`pt'' is a unit suited for printouts, not for display devices.



Hmm, I''d like to have an unit for one pixel on the screen. But I guess it
doesn''t exist except ''px'' which is buggy in IE like you explained.

<tr>
<td width = "40%" style = "background-color:#ff8800">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>
</td>
</tr>



Headings (`hX'' elements with X = [1..6]) should not be abused to achieve
greater font sizes. They should reflect the structure of the document
instead. If a different font size is needed, use the CSS font*
properties.



I use ''hX'' only that I can address the appropriate text like
h5.style_tableentry_middle

You have written so many hints and I''m still not through in fixing all my
faults on my page. However, I still don''t know what I have to change so that
the added cells (with the JavaScript) do have the same style as the first
row which I added by HTML.

In any case, thanks a lot for all your corrections and hints and if you
could give me a little bit more specific hint in how to solve my problem I
really would be glad.

Thanks again
Stefan


Stefan Mueller wrote:

The character ''-'' is fine [for CSS class names]? Correct?
But in JavaScript functions I can use ''_''. Correct?
Correct, as CSS2 Grammar and JavaScript Reference/ECMAScript 3 Specification
say.

<tr>
<td width = "40%" style = "background-color:#ff8800">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>

<td width = "30%" style = "background-color:#cc0000">
<h5 class = "style_tabletitle">Title leftMiddle</h5>
</td>
</td>
</tr>



Headings (`hX'' elements with X = [1..6]) should not be abused to achieve
greater font sizes. They should reflect the structure of the document
instead. If a different font size is needed, use the CSS font*
properties.



I use ''hX'' only that I can address the appropriate text like
h5.style_tableentry_middle



You probably should not. You do not need a specific element just to
format text. For example, if you left out the `h5'' part in your CSS
rule, it would apply to almost any element that has the `class''
attribute and the value `style_tableentry_middle'' (which should be
`style-tableentry-middle''). The difference with the `hX'' block elements
is that those element have structural meaning beyond their display (e.g.
for application of outlines and automatically generated list of contents),
so use them wisely. And there are more possibilities for selectors than
just classname-based ones: <http://www.w3.org/TR/CSS2/selector.html>.

So, IMHO, a document may have more than `h5'' element but not within
juxtapositioned table cells. If you would describe why you find this
necessary, I''ll probably have a suggestion better suited to your
approach.

But that really belongs into a CSS newsgroup
(comp.infosystems.www.authoring.stylesheets or
de.comm.infosystems.www.authoring.misc), or in
private e-mail communication (with me also in
German, if you like).
You have written so many hints and I''m still not through in fixing all my
faults on my page. However, I still don''t know what I have to change so
that the added cells (with the JavaScript) do have the same style as the
first row which I added by HTML.
See <http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you>.
In any case, thanks a lot for all your corrections and hints
You''re welcome.
and if you could give me a little bit more specific hint in how to solve
my problem I really would be glad.



Unless your document is all Valid and one has seen all your code, one can
only make wild guesses. Make it Valid, post the URI of that test case and
I, too, will be happy to help again -- if still necessary :)
Regards,
PointedEars


这篇关于如何将文本添加到表格中,例如&LT; H5&GT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆