それぞれのフォームにタブがあり、リセットボタンをクリックするとそのフォームのフォームフィールドのみがリセットされます。異なるフォームのリセットフォームフィールドを最適化するjquery
//Reset respective forms
$('#thresholds .reset').on('click', function() {
$('#thresholds').trigger("reset");
});
$('#attributes .reset').on('click', function() {
$('#attributes').trigger("reset");
});
$('#rules .reset').on('click', function() {
$('#rules').trigger("reset");
});
$('#events .reset').on('click', function() {
$('#events').trigger("reset");
});
#thresholds、#attributes、#rules、#eventsはフォームIDです。
これをコードの繰り返しに最適化するにはどうすればよいですか?
これは機能します!ありがとうございました:D –
あなたのお手伝いをしてくださった場合は、[upvote and answer the answer](https://stackoverflow.com/help/someone-answers)ハッピーコーディングをしてください! :) –
既にあります:) –