私はいくつかの選択ボックスを持っていると私はどの選択ボックスがトリガーされているか知りたいです。jqueryの選択ボックス名を取得
HTMLコード:
<form id="property-filters" method="post">
<select name="sel1">
<option value="1">1</option>
<option value="2">2</option>
</select>
<select name="sel2">
<option value="3">3</option>
<option value="4">4</option>
</select>
</form>
jQueryのコード:
$(document).on('change', '#property-filters input, #property-filters select', function()
{
//Get the name of the select box.
}
任意のヘルプは高く評価されます。前もって感謝します。
チェック 'this.name' –