Mogą być pomocne.
Jeśli znajdziesz w Contains , będzie tak
$("input[id*='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Jeśli znajdziesz, zaczyna się od, będzie tak
$("input[id^='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Jeśli znajdziesz w Ends With , będzie tak
$("input[id$='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Jeśli chcesz wybrać elementy, których identyfikator nie jest podanym ciągiem
$("input[id!='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Jeśli chcesz wybrać elementy, których nazwa zawiera dane słowo, rozdzielone spacjami
$("input[name~='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Jeśli chcesz wybrać elementy, których identyfikator jest równy podanemu ciągowi lub zaczynając od tego ciągu, po którym następuje myślnik
$("input[id|='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});