在Opera浏览器中提交表单时如何删除此对话框窗口?

时间:2013-05-21 00:28:41

标签: php http-headers opera mime-types

使用Opera Browser(适用于64位linux / ubuntu)。为什么当我点击提交时会弹出一个下载选项对话框,如屏幕截图所示。我在Chromium /谷歌Chrome / Firefox / Midori / Arora中进行了测试,除了Opera之外它还能正常工作吗?我怎么能省略那个对话呢?

enter image description here

<form action="/a/userslogin" 
      method="get" 
      id="formusers" 
      name="formuser" 
      target="submitme">
<input type="text" name="username" id="username" value=""/>
<input type="password" name="password" id="password" value=""/>
<iframe id="submitme" name="submitme"></iframe>
<input type="submit" name="button" id="button" value="Submit"/>
</form>

PHP:/ a / userslogin

  public function usersloginAction() {
    $return = array(
          'flag' => 'test',
          'result' => 'fail'
    );
    $content = Zend_Json::encode($return);
    $this->getResponse()
            ->setHeader('Content-Type', 'application/json')
            ->setBody($content)
            ->sendResponse();
    exit;
  }  

0 个答案:

没有答案