我有一個RadionButtonList有兩個值,點擊時我得隱藏我的頁面上的一些元素。調用jQuery函數onload和onclick
我得到了下面的代碼,點擊RadionButton時觸發。如何在我的網頁的網頁加載中調用此功能?
$(document).ready(function() {
$('#<%= columnsRoundPanel.FindControl("rdlClickOrder").ClientID %> input').click(function() {
var clickOrder = $(this).val();
$('#<%= chkColumnList.ClientID %> input').each(function (i) {
var index = ($(this).next('label').text().indexOf(clickOrder));
if ((index == -1) && ($(this).next('label').text() != 'Cost' && $(this).next('label').text() != 'Clicks' && $(this).next('label').text() != 'Impressions')) {
$(this).css('display', 'none');
$(this).next('label').css('display', 'none');
} else {
$(this).css('display', 'inline');
$(this).next('label').css('display', 'inline');
}
});
});
});
什麼是RadionButtonList? jQuery沒有這樣的概念。 –