如何在没有POST的情况下使用HREF获取文本框值

时间:2016-11-27 07:47:11

标签: javascript php

  

http://localhost/check.php?date=textbox1&time=textbox2

 <a href="http://localhost/check.php?date=textbox1&time=textbox2" onclick="window.open('http://localhost/check.php?date=textbox1&time=textbox2', 'newwindow', 'width=600, height=600'); return false;"> <i class="glyphicon glyphicon-plus"></i></a>

这是我目前的代码,我想在GET方法上传输textbox 1和textbox 2的值。我试过document.getElementbyId('date')。值但没有运气。

1 个答案:

答案 0 :(得分:0)

我不确定你在这里要做什么。据我所知, 你有这个......:

<input type="text" id="date"/>
<input type="text" id="time"/>

...并且您希望将这些文本框值用于请求参数。试试这个:

function submitDateAndTime() {
  var url = 'http://localhost/check.php?date=';
  url += document.getElementById('date').value;
  url +='&time=';
  url += document.getElementById('time').value;
  // Do whatever you want with the URL here
  // For example, window.open to load in a new window:
  window.open('url');
  // Or use _self if you want to load in the current window
  window.open('url', '_self');
  // Or ajax, etc.

和HTML:

<a href="javascript:void submitDateAndTime();">Submit</a>