想要在html弹出窗口中显示javascript验证消息,该窗口是一个单独的html页面。目前它显示在调用它的同一页面上。
$("#getStarted").val('Try xxxx for Free');
$('#message1').text('User ' + emailID + ' already exists.');
$("#stRegister").val("");
document.getElementById("stRegister").focus();

<input name="stRegister" id="stRegister" type="email" class="registerinput" placeholder="Enter your business email ID" onkeypress="$('#message1').text('');">
<div class="col-md-4 col-md-offset-6 hidden-xs hidden-sm">
<div style="margin-left:8px;" class="alerts" id="message1">
</div>
</div>
&#13;
答案 0 :(得分:0)
var window = window.open(url,windowName,[windowFeatures]);将dom移动到窗口对象上。
答案 1 :(得分:0)
不确定您是否可以在单独的窗口中执行此操作。但是,对于验证,您可以使用window.confirm
函数本机构建到浏览器中。这是一个例子:
// window.confirm returns a boolean based on the user action
let validate = window.confirm('Do you want to continue?');
if (validate) {
console.log('validated');
} else {
console.log('not validated');
}
&#13;
答案 2 :(得分:-1)
您可以在脚本中使用以下内容:
window.alert("what you want here");