สิ่งเหล่านี้มีประโยชน์
หากคุณกำลังหาโดยมีแล้วมันจะเป็นอย่างนี้
$("input[id*='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
หากคุณกำลังค้นหาด้วยStarts Withก็จะเป็นเช่นนี้
$("input[id^='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
หากคุณกำลังค้นหาด้วยEnds Withก็จะเป็นเช่นนี้
$("input[id$='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
หากคุณต้องการเลือกองค์ประกอบที่id ไม่ใช่สตริงที่กำหนด
$("input[id!='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
หากคุณต้องการเลือกองค์ประกอบที่ชื่อมีคำที่กำหนดคั่นด้วยช่องว่าง
$("input[name~='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});
หากคุณต้องการเลือกองค์ประกอบที่id เท่ากับสตริงที่กำหนดหรือเริ่มต้นด้วยสตริงนั้นตามด้วยยัติภังค์
$("input[id|='DiscountType']").each(function (i, el) {
//It'll be an array of elements
});