1

我在 Django 应用程序中有一个表单(在模板文件中),如下所示:

<li>
  <form action="{% url 'socialauth_begin' 'facebook' %}?{{ redirect_querystring }}" method="get">
     <input type="hidden" name="next" value="{{ request.get_full_path }}">
     <a href="#" onclick="$(this).parent().submit();return false;"><img class="loggin" src="../img/fb-loggin.png" alt="loggin"></a>
  </form>
</li>

问题是这种形式适用于大多数设备,除了 iPhone、iPad 等触摸设备......请给我一个想法。非常感谢!:)

查看我的网站了解更多详情:http ://truyenyy.com

4

2 回答 2

1

尝试使用<a href="javascript:void(0);"而不是<a href="#". 也看看这个链接

于 2013-01-07T08:32:53.880 回答
0

这句话给我!xD

    $('#sex').bind('touchstart click', function(){
       $(this).parent().submit();
       return false
    });
于 2013-01-07T15:59:20.843 回答