表单get方式提交,怎样给参数urlencode编码
表单get方式提交,怎样给参数urlencode编码
例如:
1.php
<form method="get" action="">
请输入类型:<input type="text" name="type" />
<input type="submit" value="提交" />
</form>
在文本框中输入中文,点击提交,这时得到的url是1.php?type=中文,
我怎样才能得到1.php?type=urlencode(中文)的url呢?
[解决办法]
把提交按钮的类型改变button,onclick时先编码文字,再更改文档的location.
用js控制浏览器地址的变更。
[解决办法]
<script type='text/javascript'>function sub(){ window.location.href='1.php?input1='+encodeURI(document.getElementByName('input1')); return false;}</script><?phpecho $input1;?><form name='form1' method='get' onSubmit='return sub();'><input type='text' name='input1'><input type='submit'>
[解决办法]