Questi possono essere utili.
Se lo trovi da Contains , sarà così
$("input[id*='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Se lo stai scoprendo da Starts With , sarà così
$("input[id^='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Se lo stai trovando con Ends With , sarà così
$("input[id$='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Se si desidera selezionare elementi quale ID non è una determinata stringa
$("input[id!='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Se si desidera selezionare elementi il cui nome contiene una determinata parola, delimitato da spazi
$("input[name~='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
Se si desidera selezionare elementi quale id è uguale a una determinata stringa o iniziare con quella stringa seguita da un trattino
$("input[id|='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});