Как вызвать диалоговое окно внутри условия if ? язык JavaScript
Я знаю, что это очень простой вопрос для тех, Но я новичок, и я пытаюсь понять, как вызвать диалоговое окно с 2 кнопками с параметрами внутри условия if. мой код не вызывает функцию только отображения предупреждающего сообщения. Если кто то может просветить меня я буду очень признателен вам спасибо
Что я уже пробовал:
<div id="requirement #2"> <button type="button" id="button4" onclick="StringSearch1()">Search</button> </div> <script> function StringSearch1() { if (condition) { stayonPage1(val1,val2,val3); // alert("textfield1 " + val1 + " Exists in textfield2 and its corresponding value in text 3 is " + val3) //; //the alert message is working but I want to call the function dialogbox to pop } else { // alert("textfield1 " + val1 + " not Exists in textfield2 and its corresponding value in text 3 is " + val3) } } function stayonPage1(val1,val2,val3){ var dialog = $("textfield1 " + val1 + " Exists in textfield2 and its corresponding value in text 3 is " + val3).dialog({ buttons: { "Apply": function() {alert('you chose yes');}, "Cancel": function() { dialog.dialog('close'); } } }); } </script>