我们在 Joomla 中使用 PHP 时遇到了这个问题。我们希望输出为 3。
在 HTML 中,我们声明:
var address;
address = '3';
并将以下代码放入表格中:
<td><input type="text" id ="amount1.2" name="amount" value="<?php $address = JRequest::getVar('address');?>"/>
在进程/服务器页面中,我们放置以下代码:
$address = JRequest::getVar('address', 'default value goes here', 'post','variable type');
但是输出为0。