`
folio
  • 浏览: 31283 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

关于“Invalid location of tag (form) ”错误或警告的解决

阅读更多
关于“Invalid location of tag (form) ”错误或警告的解决

Invalid location of tag (form) =无效的位置标记(form)

源代码如下,有错误提示!
<table width="100%" border="0" cellspacing="0" cellpadding="0">					
						<tr>
							<td width="37%" height="162">
								&nbsp;
							</td>
							<td width="40%">
								&nbsp;
							</td>
							<td width="23%">
								&nbsp;
							</td>
						</tr>
						<form name="MainForm" method="POST" action="loading.jsp">
						<tr>
							<td height="39" align="right" class="denglv01">
								姓名:
							</td>
							<td height="39" align="right">
								<input name="p_User_Id" type="text" size="20" class="box04"
									tabindex="1">
							</td>
							<td height="39">
								&nbsp;
							</td>
						</tr>
						<tr>
							<td height="39" align="right" class="denglv01">
								密码:
							</td>
							<td height="39" align="right">
								<input name="p_User_Pwd" type="password" size="21" class="box04">
							</td>
							<td height="39">
								&nbsp;
							</td>
						</tr>
						</form>

						<tr>
							<td height="49" colspan="3">
								<a href="#" onClick="document.MainForm.submit()"><img
										src="images_xf/botton3.jpg" width="62" height="21" border="0">
								</a>
								<a href="#"><img src="images_xf/botton4.jpg" width="62"
										height="21" border="0">
								</a>
							</td>
						</tr>
					</table>					


修改为:
<form name="MainForm" method="POST" action="loading.jsp">
					<table width="100%" border="0" cellspacing="0" cellpadding="0">					
						<tr>
							<td width="37%" height="162">
								&nbsp;
							</td>
							<td width="40%">
								&nbsp;
							</td>
							<td width="23%">
								&nbsp;
							</td>
						</tr>
						
						<tr>
							<td height="39" align="right" class="denglv01">
								姓名:
							</td>
							<td height="39" align="right">
								<input name="p_User_Id" type="text" size="20" class="box04"
									tabindex="1">
							</td>
							<td height="39">
								&nbsp;
							</td>
						</tr>
						<tr>
							<td height="39" align="right" class="denglv01">
								密码:
							</td>
							<td height="39" align="right">
								<input name="p_User_Pwd" type="password" size="21" class="box04">
							</td>
							<td height="39">
								&nbsp;
							</td>
						</tr>
						

						<tr>
							<td height="49" colspan="3">
								<a href="#" onClick="document.MainForm.submit()"><img
										src="images_xf/botton3.jpg" width="62" height="21" border="0">
								</a>
								<a href="#"><img src="images_xf/botton4.jpg" width="62"
										height="21" border="0">
								</a>
							</td>
						</tr>
					</table>
					</form>


MyEclipse提示正常了,原因在此:
<form></form>不能写到<table></table>里面!

2
1
分享到:
评论
1 楼 cxy_lucky 2012-05-30  
其实,即使是将form写在table之外,也会出这个错。

相关推荐

    myelicpse 出现Invalid location of tag的问题解决方法

    在开发过程中,如果在不正确的位置使用了特定的HTML标签(如`&lt;form&gt;`、`&lt;style&gt;`或`&lt;script&gt;`),MyEclipse就会报出“Invalid location of tag”的警告。这种错误虽然不影响程序运行,但长期存在可能导致代码结构...

    解决Invalid byte 1 of 1-byte UTF-8 sequence

    标题 "解决Invalid byte 1 of 1-byte UTF-8 sequence" 涉及的问题是关于字符编码不匹配引发的错误,通常在处理包含非ASCII字符的文本文件时出现。UTF-8是一种广泛使用的字符编码标准,能表示世界上大部分语言的字符...

    invalid syntax是什么错误

    "Invalid syntax"错误是编程语言中非常基础但关键的一个错误类型,主要出现在Python等解释型语言中。这个错误表示你的代码中存在不符合语法规则的部分,导致编译器或解释器无法理解你的意图。在Python中,语法是极其...

    invalid syntax是语法错误.docx

    "Invalid Syntax"错误是编程语言中常见的一个错误类型,它表示你的代码中存在不符合该语言语法规则的部分。在Python这种解释型语言中,当解释器遇到无法理解的代码结构时,就会抛出"Invalid Syntax"错误。这个错误...

    nc- invalid option — ‘e’错误解决办法.docx

    所以,为了解决“nc: invalid option — ‘e’”错误,我们需要将 `/etc/alternatives/nc` 文件符号链接指向 `/bin/nc.openbsd` 文件,而不是 `/bin/nc.traditional` 文件。可以使用以下命令来实现: `sudo rm /etc...

    invalid declaration of function (解决方案).md

    invalid declaration of function (解决方案).md

    invalid use of incomplete type(解决方案).md

    invalid use of incomplete type(解决方案).md

    Keil MDK 编译 ucOS-II 出现的警告和错误解决

    Keil MDK 编译 ucOS-II 出现的警告和错误解决 在使用 Keil MDK 编译 ucOS-II 时,可能会出现一些警告和错误。本文将总结这些问题的解决方法。 警告:A1876W:Use of '|' as a synonym for the :OR: operator is ...

    Invalid header signature POI的解决方案

    然而,当遇到“Invalid header signature”错误时,它意味着POI无法识别文件的头部信息,这通常是由于文件损坏、不兼容的格式或编码问题导致的。现在,我们来详细探讨这个问题及其解决方案。 首先,我们需要理解...

    Keil C 编译器常见警告与错误信息的解决方法

    ### Keil C 编译器常见警告与错误信息的解决方法 #### 1. Warning 280: ’i’: unreferenced local variable **问题描述:** 此警告表示局部变量`i`在函数中被声明了,但在该函数内部没有进行任何引用或赋值操作。...

    打开vs提示invalid handle

    在IT领域,遇到“打开vs提示invalid handle”的问题并不罕见,这通常意味着Visual Studio(简称VS)在尝试访问某些资源或执行特定操作时遇到了错误。此类问题可能源于多种因素,包括但不限于权限问题、系统资源冲突...

    引入mybatis-plus报 Invalid bound statement错误问题的解决方法

    "引入mybatis-plus报Invalid bound statement错误问题的解决方法" Mybatis-Plus是一个基于Mybatis的增强工具,旨在简化开发效率。然而,在使用Mybatis-Plus时,可能会遇到各种问题,例如Invalid bound statement...

    invalid multibyte character sequence 870告警1

    Invalid Multibyte ...通过使用字符串格式、禁用编译器警告或配置多字节字符序列支持,我们可以解决这个警告。同时,了解多字节字符序列的原理和编译器的工作机理也非常重要,这可以帮助我们更好地解决编程问题。

    format ' x' invalid or incompatible with argument 解决办法

    ### "format ' x' invalid or incompatible with argument" 解决办法 在进行电子设计自动化(EDA)软件Protel 99 SE的操作过程中,用户可能会遇到一个常见的错误提示:“format ' x' invalid or incompatible with ...

    解决 Protel 99 SE 'Format '%x' invalid or...

    首先,"Format '%x' invalid or"错误通常出现在程序尝试解析十六进制格式的数据时,由于数据格式不正确或无法识别而导致。在Protel 99 SE中,这可能发生在导入自定义库,尤其是当库文件与软件版本不匹配,或者库文件...

    程序运行时,提示“Invalid parameter”错误

    Delphi 10.3 ,程序运行到DataModule2.ClientDataSet1.ApplyUpdates(0);语句时,提示“Invalid parameter”错误

    Keil_C编译器常见警告与错误信息的解决办法

    ### Keil C编译器常见警告与错误信息的解决办法 #### 1. Warning280: ’i’: unreferenced local variable **说明:** 此警告表明局部变量`i`在函数内部并未被使用。 **解决方法:** - 检查函数内是否真的需要...

    STATUS_INVALID_IMAGE_HASH.zip

    标题 "STATUS_INVALID_IMAGE_HASH.zip" 暗示了一个与操作系统或浏览器有关的错误,特别是针对Chrome和Edge浏览器。这个问题通常涉及到系统中某个可执行文件(DLL或EXE)的哈希值与预期不符,导致安全策略无法验证其...

    安装过程中1327错误解决方式

    解决1327错误的关键在于修改注册表中的错误路径信息,确保它们指向正确的硬盘驱动器或网络驱动器。以下是具体的步骤: 1. **打开注册表编辑器**: - 单击“开始”菜单; - 选择“运行”选项(或使用快捷键`Win + ...

    MySql常见错误代码

    但是,在使用 MySql 过程中,我们经常会遇到各种错误代码,这些错误代码可能会导致数据库崩溃、数据丢失或应用程序无法正常运行。因此,了解这些错误代码的含义和解决方法是非常重要的。 在这篇文章中,我们将对 ...

Global site tag (gtag.js) - Google Analytics