我在asp.net项目中实现了这个功能。它的工作100%工作。
function barcodeValidation() {
var newbarcode, confirmBarcode;
newbarcode = document.getElementById("txtNewBarcode").value;
confirmbarcode = document.getElementById("txtConfirmBarcode").value;
if (newbarcode != confirmbarcode) {
alert("Value not match");
return false;
}
return true;
}
但问题是当这个窗口第二次出现时,有一个复选框说“阻止这个页面创建其他对话框......那么如何禁用这个刻度?如果用户给这个勾选标记,警告信息永远不会再显示。
有没有办法解决这个问题?