最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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/

发布评论

评论列表(0)

  1. 暂无评论