<form method="post" action="#" onsubmit="return searchresults();"> 中的#代表什么?<br>如题<br><br><font color="#e78608">------解决方案--------------------</font><br>本文件地址内。 <br><font color="#e78608">------解决方案--------------------</font><br>二楼的不知所言....<br>----------------------<br># 代表文件内的锚点.<br><br>比如有个<br><div id="selection1"></div> <br><br>那么你写<a href="#selection1">滚动到selection1</a><br>点击这个链接就会滚动到 id="selection1"的标签的起始位置。<br>如果只有单独的一个#号,那么代表本文件。<br>也可以这样写 <a href="aaaa.html#otherSelection">otherSelection</a><br>那么这时候点击将会进入aaaa.html并定位到id="otherSelection"的位置。<br><br>form 的action属性是数据发送地址,与上面的原理相同。 <div class="clear"> </div> </form>