当前位置: 代码迷 >> PHP >> <form method="post" action="" onsubmit="return searchresults();"> 中的#代表什么?该怎么处理
  详细解决方案

<form method="post" action="" onsubmit="return searchresults();"> 中的#代表什么?该怎么处理

热度:759   发布时间:2012-06-07 15:05:14.0
<form method="post" action="#" onsubmit="return searchresults();"> 中的#代表什么?
如题

------解决方案--------------------
本文件地址内。
------解决方案--------------------
二楼的不知所言....
----------------------
# 代表文件内的锚点.

比如有个
<div id="selection1"></div>

那么你写<a href="#selection1">滚动到selection1</a>
点击这个链接就会滚动到 id="selection1"的标签的起始位置。
如果只有单独的一个#号,那么代表本文件。
也可以这样写 <a href="aaaa.html#otherSelection">otherSelection</a>
那么这时候点击将会进入aaaa.html并定位到id="otherSelection"的位置。

form 的action属性是数据发送地址,与上面的原理相同。
  相关解决方案