0

这是我的脚本。我试图让一个字段自动关注所有浏览器、移动浏览器和 iPad 浏览器,但我无法让它工作。有人能帮助我吗?这就是我正在尝试的:o

http://boxoffice.jokerzcomedyclub.com/scanner/上,目标是让字段自动在其中启动光标。它适用于电脑,但不适用于 iPad 或 iPhone,所以我正在寻找其他替代品。请帮忙。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Validate Ticket</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
  <script src="js/jquery.autofocus-min.js"></script>
  <script>
    $('.label').mouseup(function(){
      $('[autofocus=""]').autofocus();
    });
    /*$('.label').mouseup(function(){ $('input').focus(); });*/
  </script>
<script type="text/javascript">
  /*  window.onload = function() {
        document.forms[0].barcode.focus();
    }*/
</script>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>

<div id="wrapper">

<br />
<div style="width:200px; border:1px #999 solid; text-align:center;">
<form action="" method="get">
<select name="Events" class="listclass">
4

1 回答 1

1

你试过吗

$(document).ready(function(){
    $('.label').focus();
});
于 2012-03-08T13:59:49.603 回答