我有一個未知數量的不同ID,它看起來像#send_1
,#send_2
等等。我需要調用一個jQuery的每個ID的,如:如何將jQuery功能與不同選擇器結合使用
$(document).on("submit", "#send_1", function(e){
var i=1;
if (something is true) {
do something
}
});
$(document).on("submit", "#send_2", function(e){
var i=1;
if (something is true)) {
do something
}
});
,所以我可以寫一百遍一樣的功能只是改變_x
但應解決這個更propper方式。
我通常不使用jQuery,所以如果有人可以幫助我,我真的很感激。
在此先感謝。
我的回答有一個錯字。現在試試 – AmmarCSE