2010-04-26 88 views
0

設置Tab鍵索引在一個WebForm我在web窗體

  1. 文本框
  2. FreeTextBox(第三方工具)
  3. 複選框

我給標籤索引值文本框爲1和CheckBox將TextBox設置爲默認焦點爲2。

問題是在頁面加載完成後,當我按下Tab鍵,將焦點移動到複選框時,瀏覽器的URL欄變得越來越集中。

謝謝。

回答

0

在什麼瀏覽器中你看到的行爲?我已經在Firefox中測試過它,沒有問題。

爲什麼不嘗試使用簡單的表單,然後開始添加其他元素以查看它何時失敗? (也許第三方組件是罪魁禍首)

<%@ Page Title="Home Page" Language="vb" AutoEventWireup="false" 
    CodeBehind="Default.aspx.vb" Inherits="WebApplication1._Default" %> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 
<head runat="server"> 
    <title>my test</title> 
</head> 
<body> 
    <form runat="server" defaultFocus="txtBox1"> 
     <asp:TextBox runat="server" ID="txtBox1" TabIndex="1"></asp:TextBox> <br /> 
     <asp:TextBox runat="server" ID="txtBox2" TabIndex="3"></asp:TextBox> <br /> 
     <asp:CheckBox runat="server" ID="chkBox1" TabIndex="2" /><br /> 
     <asp:Button UseSubmitBehavior="true" runat="server" ID="btn1" text="submit" /> 
    </form> 
</body> 
</html>