1.テキスト ボックスの変更イベントの場合は、propertychange を使用できます。例:
$("#txtDataDate").bind("propertychange",function(){
});
2.選択した RadioButton の値を取得します
var radio_value = $(" input[type=radio][checked]").val();
3.ドロップダウンリストの変更イベント、選択したオプションの値を取得
$("#drop-down list").change(function() {
//選択された項目の値を取得します
var select = $(this)。 val();
}).change();