문제

Is it possible to generate a form in html that allows the text that's input to be sent to the address bar?

도움이 되었습니까?

해결책

Sure is, you just make sure the forms METHOD is set to GET:

<form id="myForm" method="GET">
//Form Stuff
</form>

Take a look here for more information

다른 팁

Without any testing and going off the top of my head, this should do the trick (messily):

<form onsubmit="window.location = document.getElementById('addressfield').value; return false;">
   <input type="text" id="addressfield" />
</form>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top