JS:
$('#button6').click(function () {
$('#que1').hide();
$('#que2').hide();
$('#que3').hide();
$('#que4').show();
$('#que5').hide();
$('#que6').hide();
$('#que7').hide();
$('#que8').hide();
var line1 = $('.question3:checked').val();
if (typeof line1 === "undefined") {
var msg = new Windows.UI.Popups.MessageDialog("You Choosed", "nothing");
msg.showAsync();
$('#button6').click();
}
});
可能です?ラジオボタンをチェックしないと同じ機能を返したい。
しかし、これは機能していません。