本文介绍了使用jquery在ASPal中获取ASP标签文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好。
如何在DataList中找到标签文字?
这是否可能?
我的数据列表只显示1行,如果它显示的行数超过1行我只想获得第一行。
感谢您的回答! Hooray!
Hi.
How can I find the label text inside a DataList?
Is this even possible?
My DataList only displays 1 row, if in case it will display more than 1 row I would like to get only the first row.
Thanks for answering! Hooray!
<asp:DataList ID="dlUserAccess" runat="server">
<itemtemplate>
Admin: <asp:Label ID="adminlabel" runat="server" Text='<%# Eval("Admin") %>'>
Accounting: <asp:Label ID="accountinglabel" runat="server" Text='<%# Eval("Accounting") %>'>
FinalApprover: <asp:Label ID="finalapproverlabel" runat="server" Text='<%# Eval("Approver") %>'>
Benefits: <asp:Label ID="benefitslabel" runat="server" Text='<%# Eval("Benefits") %>'>
FacultyProf: <asp:Label ID="FacultyProflabel" runat="server" Text='<%# Eval("FacultyProf") %>'>
OtherExpense: <asp:Label
ID="OtherExpenselabel" runat="server" Text='<%# Eval("OtherExpense") %>'>
<br>
我尝试过的事情:
我试过这个但是没有运气 - .forChecking是一个礼物,你好吗
What I have tried:
I tried this but no luck -- .forChecking is a li in ul
$(function () {
$('.forChecking').click(function () {
//var str = $(this).text();
var dl = $('#dlUserAccess label#benefitslabel')
alert(dl);
//$('#loading-content').load('dataSearch.php?' + str, hideLoader);
});
});
推荐答案
这篇关于使用jquery在ASPal中获取ASP标签文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!