我在StackOverFlow中搜索了几个问题但是没有符合我的要求。 我想要实现的是,用户将在父窗口中输入详细信息,点击登录按钮,数据用户名和密码将被发送到子窗口,同时父数据将被删除,子窗口将被打开window.open ....截至目前我只是想在子窗口中显示警报。 由于某种原因,我无法在这里使用ajax。
这是我的代码
HTML
int examResult = (int) executionVariables.get("exam_result");
int examGrade = (int) executionVariables.get("exam_grade");
string remarks = (string) executionVariables.get("remarks");
Jquery的
<form class="modal-content animate">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display = 'none'" class="close" title="Close Modal">×</span>
<img src="img_avatar2.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="userName" id="userName" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" id="password" required>
<button type="button" id="loginBtn">Login</button>
</div>
</form>