无法使用javascript在隐藏字段中设置ConfirmBox值

时间:2015-05-08 07:36:38

标签: javascript hiddenfield

当我点击确认框按钮并尝试在隐藏字段中设置值时,它显示此错误:

  

无法使用javascript

在隐藏字段中设置确认框值
function Confirm() {
  var confirm_value = document.getElementById('<%=hdnConfirm.ClientID%>');
  var answer = confirm("Record saved successfully!want to scan document?");
  if (answer) {
    confirm_value.value = "Yes";
    return true;
  } else {
    confirm_value.value = "No";
    return false;
  }
}

0 个答案:

没有答案