0

我需要帮助,我正在尝试解决这个问题,但我不知道问题是什么。

基本上我有这个登录表单:

<form id="myform" action="login.php" method="post" class="loginform">

Email
  <input type="email" name="email" maxlength="30" placeholder="john.smith@example.com" />

Password
<input type="password" name="password" maxlength="30" placeholder="*****" />

<input type="image" src="../PTB1/assets/img/icons/loginarrow1.png" name="submit" class="loginbutton"/>

            </form>

它适用于除 Firefox 之外的所有浏览器。

出于某种原因,我将其缩小到用于提交按钮的图像,因为如果我使用下面的这个表单,那么 firefox 可以正常工作并登录,但它与上面的那个不一样。有什么想法有什么问题吗?谢谢。

            <form action="login.php" method="post">

    Email:
    <input type="email" id="email" name="email" placeholder="john.smith@example.com" />


    Password:
    <input type="password" id="password" name="password" placeholder="Password" />
    <input type="submit" name="submit" value="Login &gt;" />


</form>
4

1 回答 1

0

http://www.onenaught.com/posts/382/firefox-4-change-input-type-image-only-submits-x-and-y-not-name这可能回答你的问题吗?您是否正在寻找提交名称以处理您的请求?

于 2013-02-03T21:13:08.293 回答