我们开发了自定义支付网关。 用户可以选择要支付的emi选项。在模型中我已声明
protected $_formBlockType = 'mygateway/form'
在Block I中声明了
protected function _construct()
{
parent::_construct();
$this->setTemplate('mygateway/form.phtml');
}
我的form.phtml看起来像
<label style="margin-left:190px;background-color:#999;font-size:16px;font-weight:300px;">Select EMI Option : </label>
<select id="bankInfo" style="margin-left:10px;margin-top:50px;" onchange="getEMIDetail()">
选择银行
但是getEMIDetail没有被调用。
请建议