eclipse上的错误标签的无效位置(b) [英] error on eclipse Invalid location of tag (b)

查看:428
本文介绍了eclipse上的错误标签的无效位置(b)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我开始使用eclipse调试器。

 < h3 id =TitleField>数组函数< h3>< b /> 
< p>< h1> array_change_key_case< / h1>< / p>

我得到带有标签无效位置(h1)的惊叹号。和标签的位置无效(b)。
我做错了什么?
Thanks。

解决方案使用标题和段落,它会自动在新行开始,因此< br> 标记不是必需的。 < h1> < h2> < h3> 等是标题,并且< p> 是段落。



而不是在它们里面,看起来像这样:

 < h1> array_change_key_case< / h1> 
< p>您的文字< / p>


I start to work with eclipse debugger. I write a simple html file with two different lines.

<h3 id="TitleField">Array Function </h3><b />
<p><h1>array_change_key_case</h1></p>

I got Exclamation mark with "Invalid location of tag (h1)." and "Invalid location of tag (b).". What am I doing wrong ? Thanks.

解决方案

With headers and paragraphs it automatically starts on a new line, so the <br> tag is not necessary. <h1>, <h2>, <h3>, etc. are titles, and <p> are paragraphs.

You post titles above paragraphs and not inside them, which would look like this:

<h1>array_change_key_case</h1>
<p>your text</p>

这篇关于eclipse上的错误标签的无效位置(b)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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