您能告诉我如何从JavaScript文件中获取值并将其发送到PHP文件吗?
代码:
var year = (year != null) ? year : '".$this->arrToday["year"]."';
var month = (month != null) ? month : '".$this->ConvertToDecimal($this>arrToday["mon"])."';
var day = (day != null) ? day : '".$this->arrToday["mday"]."';
my_window= window.open ('Event.php','mywindow1','status=1,width=350,height=150');
\\
我想将变量(年,月,日)发送到Event.php。
你能告诉我怎么样?答案 0 :(得分:2)
您可以使用ajax将JS变量发送到php(查看jQuery),但您无法通过javascript执行php代码。另一种方法(如果必须在新页面中使用这些变量)是将js变量作为GET变量传递,如:
my_window= window.open ('Event.php?year=2010','mywindow1','status=1,width=350,height=150');
并在php中:
echo $_GET["year"]; //prints 2010
答案 1 :(得分:1)
var url = "event.php?year="+year+"&month="+month+"&day"+day;
var win1 = window.open(url,"File name","height=150,width=350,fullscreen=0,location=1,menubar=0,resizable=0,scrollbars=1,status=1,toolbar=0,left=0,top=30");
win1.focus();
在event.php文件中
使用$ _GET ['day'],$ _GET ['month'],$ _GET ['year']获取值