javascript - 关于url路径的问题?

WBOY
Release: 2016-06-06 20:08:29
Original
886 people have browsed it

<code>这样一种情况:
index.php(主体文件):
 <frameset cols="50%,50%">
  <frame src="/link.php">
  <frame src="/content.php" name="content">
 </frameset>

link.php:
 <a href="form/form.php" target="content">链接表单</a>

form.php
<form action="" enctype="mulitipart/form-data" method="post">
  <input type="text" name="user">
  <input type="submit">
</form>

就这三个文件,访问是从 index.php 进入的。

要解释的是:
  点击 '链接表单' 按钮 ---》 在content.php中显示显示 form.php 的内容。
  点击 form.php 的提交按钮,链接为什么就指向了: /form/form.php ??

就是不清楚这样的链接,求大神解决??
</code>
Copy after login
Copy after login

回复内容:

<code>这样一种情况:
index.php(主体文件):
 <frameset cols="50%,50%">
  <frame src="/link.php">
  <frame src="/content.php" name="content">
 </frameset>

link.php:
 <a href="form/form.php" target="content">链接表单</a>

form.php
<form action="" enctype="mulitipart/form-data" method="post">
  <input type="text" name="user">
  <input type="submit">
</form>

就这三个文件,访问是从 index.php 进入的。

要解释的是:
  点击 '链接表单' 按钮 ---》 在content.php中显示显示 form.php 的内容。
  点击 form.php 的提交按钮,链接为什么就指向了: /form/form.php ??

就是不清楚这样的链接,求大神解决??
</code>
Copy after login
Copy after login

你的form并没有设置action,所以指向当前url,而你当前url是/form/form.php

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template