我有一个输入,我希望用户被发送到另一个页面,其中包含URI中的输入值,以便我可以提取它.
这是我的输入设置方式:
<input name="date" id="datepicker" onchange="window.location.href = 'test.php?Date=' + document.getElementById("datepicker").value;">
基本上,当更改日期时,应将日期添加到URI的末尾,并且应将用户发送到test.php,其中将提取值.但是,似乎没有添加该值.
有什么问题?
解决方法:
尝试:
<input name="date" id="datepicker" onchange="window.location.href = 'test.php?Date=' + this.value;">
您不需要执行document.getElementById(‘datepicker’),因为您所在的元素已经是您想要该值的元素.