2017-06-19 48 views
1

自動顯示#我有以下代碼:爲什麼我輸入(類型=文本)的URL

<div class="container text-center"> 
      <h1 class="display-3">What's the weather</h1> 
      <p class="lead"><strong>Enter the name of a city:</strong></p> 
     <form> 

<input type="text" placeholder="E.g. Cape Town, London" name="city" id="city" class="form-control" value=""> 

      <p class="lead"> 
      <button type="submit" class="btn btn-primary btn-lg" id="button">Submit</button> 
      </p> 
     </form> 
    </div> 

每當我點擊我的「提交」按鈕,我得到的值,然後「#」。我不知道它來自哪裏。它顯示在URL中(即GET變量)。我正在使用bootstrap。我怎樣才能擺脫「#」?

+2

嘗試給出表單操作和方法屬性 – j08691

+1

#是缺省端點(如果未指定表單操作)。 – circusdei

回答

2

usu method =「」action =「」。方法POST或GET

<form method="GET" action=""> 
+0

感謝它的工作。我不得不首先清除變量 – Josh

相關問題