1
Angularjsでラジオボタンの値を取得する場合は、Sweet Alert
を使用します。ラジオボタンの値を選択する方法はありますか?私はSweetAlert v1.1.3
anf ngSweetAlert
指令を使用しています。ここでSweetAlertでAngularJSを使用してラジオボタンの値を取得する方法
SweetAlert.swal({
title: "Please Select:",
text: '<form> <div class=""> <input type="radio" name="csvSelect" id="radio1" ng-model="radioValue" ng-value="1" > <label for="radio1"> Whole records </label> </div> <div class=""> <input type="radio" name="csvSelect" id="radio2" ng-model="radioValue" ng-value="2" ng-click="getVal()"> <label for="radio2"> Selected records </label> </div></form>',
html: true,
showCancelButton: true,
confirmButtonText: "Download it!",
cancelButtonText: "Cancel",
closeOnConfirm: false,
closeOnCancel: true,
showLoaderOnConfirm: true
},
function (isConfirm) {
if (isConfirm) {
SweetAlert.swal("Deleted!", $scope.radioValue, "success");
}
});
jQueryステートメント '$(...) 'を使用しない方法はありませんか –
vanilla JSを使用できます。 jqueryには1行だけあり、JSに簡単に変更できます。 –