jquery - how to focus a table cell using javascript? - Stack Overflow

VB script statement ,Set oHighlightedRow = document.all("SearchRow" & nHighlightedRow)oH

VB script statement ,

Set oHighlightedRow = document.all("SearchRow" & nHighlightedRow) oHighlightedRow.cells(0).focus()

These two statments need to be converted to javascript.anyone can help me to find a solution? Thanx

My converted code was,

var oHighlightedRow = $("#SearchRow" + nHighlightedRow);
oHighlightedRow.cells[0].focus();

Is this correct ?

VB script statement ,

Set oHighlightedRow = document.all("SearchRow" & nHighlightedRow) oHighlightedRow.cells(0).focus()

These two statments need to be converted to javascript.anyone can help me to find a solution? Thanx

My converted code was,

var oHighlightedRow = $("#SearchRow" + nHighlightedRow);
oHighlightedRow.cells[0].focus();

Is this correct ?

Share edited Dec 13, 2012 at 11:21 Madura Harshana asked Dec 13, 2012 at 11:11 Madura HarshanaMadura Harshana 1,2998 gold badges25 silver badges40 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

OK:

var oHighlightedRow = document.all("SearchRow" + nHighlightedRow);
oHighlightedRow.cells[0].focus();

Or, better (assuming the row has an id of "SearchRow" + nHighlightedRow):

var oHighlightedRow = document.getElementById("SearchRow" + nHighlightedRow);
oHighlightedRow.cells[0].focus();

Or, jQuery (again assuming the row has an id of "SearchRow" + nHighlightedRow):

$("#SearchRow" + nHighlightedRow + " td:first").focus();

You cannot focus table cells on all browsers. Here is what the jQuery documentation says:

The focus event is sent to an element when it gains focus. This event is implicitly applicable to a limited set of elements, such as form elements (<input>, <select>, etc.) and links (<a href>). In recent browser versions, the event can be extended to include all element types by explicitly setting the element's tabindex property. An element can gain focus via keyboard mands, such as the Tab key, or by mouse clicks on the element.

To make sure this works with all browsers you can implement some CSS class and add event listeners for mouse keys. Then just add/remove the css classes from table cells.

in order to focus an element with id="target" use this

$('#target').focus();

You can do this simply with the help of jQuery library with simple lines

$('selector').focus();                     

// $('selector') --> could be $('#tableId td')  

For more information please check http://api.jquery./category/selectors/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743684973a4489997.html

相关推荐

  • jquery - how to focus a table cell using javascript? - Stack Overflow

    VB script statement ,Set oHighlightedRow = document.all("SearchRow" & nHighlightedRow)oH

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信