Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我datagrid有asp.net
datagrid
asp.net
一个控件链接到函数中的事件onchange="txtChange(this)" 我txtChange()想将它与同一行中名为“txtBox2”的其他控件进行比较 如何使用JQUERY导航到它?
onchange="txtChange(this)"
txtChange()
我试过了,但它不起作用
function txtChange(textbox) { var Var= $(textbox).prev('input:text[id$="txtBox2"]'); }
尝试这个:
var gvTextboxes = $('#<%=GridView1.ClientID %>').find('input:text[id$="TextBox1"]'); var specificTextbox = gvTextBoxes[0]; var specificText = specificTextbox.val();
将GridView1,替换TextBox1为您的控件名称。
GridView1
TextBox1