`
folio
  • 浏览: 31356 次
  • 性别: 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”的警告。这种错误虽然不影响程序运行,但长期存在可能导致代码结构...

    FlexGraphics_V_1.79_D4-XE10.2_Downloadly.ir

    - FIX Invalid arc size calculation when flex-control's size changes via DocRect property. Absence of the UpdateCounter checking brings to reccurent scaling. Access demo: - FIX Memory leak in ...

    apktool documentation

    unknownFiles - Used to record name/location of non-standard files in an apk in order to place correctly on rebuilt apk sharedLibrary - Used to help support Android 5 shared library feature by ...

    SPRING API 2.0.CHM

    FormTag FrameworkPortlet FrameworkServlet FreeMarkerConfig FreeMarkerConfigurationFactory FreeMarkerConfigurationFactoryBean FreeMarkerConfigurer FreeMarkerTemplateUtils FreeMarkerView ...

    ZendFramework中文文档

    Getting Invalid, Missing, or Unknown Fields 14.5.3.3. Getting Valid Fields 14.5.4. Using Metacommands to Control Filter or Validator Rules 14.5.4.1. The FIELDS metacommand 14.5.4.2. The PRESENCE ...

    数位板压力测试

    The availability of drivers that support the features of the specification will simplify the process of developing Windows appli¬cation programs that in-corporate absolute coordinate input, and ...

    Bochs - The cross platform IA-32 (x86) emulator

    - Updated Bochs TESTFORM to version 0.5 - SF patches applied [2864402] outstanding x2apic patches by Stanislav [2960379] Fix build with -Wformat -Werror=format-security by Per Oyvind Karlsen ...

Global site tag (gtag.js) - Google Analytics