f**********y 发帖数: 230 | 1 【 以下文字转载自 Programming 讨论区 】
发信人: flyingbeauty (qualcommgirl), 信区: Programming
标 题: 问一个HTML的傻问题。。。。
发信站: BBS 未名空间站 (Wed Dec 10 23:10:59 2008)
在HTML的form里需要给action指定绝对路径。
比方说在index.html里:
|
l*****a 发帖数: 166 | 2 应该可以吧。你两个choice有啥不同啊?
【在 f**********y 的大作中提到】 : 【 以下文字转载自 Programming 讨论区 】 : 发信人: flyingbeauty (qualcommgirl), 信区: Programming : 标 题: 问一个HTML的傻问题。。。。 : 发信站: BBS 未名空间站 (Wed Dec 10 23:10:59 2008) : 在HTML的form里需要给action指定绝对路径。 : 比方说在index.html里: :
|
j****h 发帖数: 6 | 3 假设index.html在 www.localhost.com/tmp/index.html:
callme.jsp在 www.localhost.com/test/callme.jsp
you should do
action="/tmp/index.html"
if you have / in the front, it means going to the root directory, then from
there, just write out the path to the file. |
j****h 发帖数: 6 | 4 my bad, should be
/test/callme.jsp instead |
l*****a 发帖数: 166 | 5 应该都可以。
确定是路径问题?
submit后看一看 address bar 里给submit到什么地方 就知道了。
【在 j****h 的大作中提到】 : my bad, should be : /test/callme.jsp instead
|