Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドロップダウンとチェックボックスのあるグリッドがあります。チェックボックスをオンにしたときはいつでも、選択されているドロップダウンリストの値を取得したいと考えています。kendoui を使用してそれを行うにはどうすればよいですか
1 つの方法を次に示します。
var $checkBox = $("#myCheckbox"); $checkBox.click(function () { if ($checkBox.is(':checked')) { var $dropDownVal = $('#myDropdownBox').val(); } });