继续获取JS函数未定义的错误

时间:2013-11-19 19:02:53

标签: javascript

下面是我的功能,我正在调用asp图像按钮客户端点击事件以确认删除。我一直得到函数未定义的错误。

<script type="text/javascript" language="javascript">
    function confirmDelete1() 
    {
        var bReturnValue;
        bSkipPageLoadJS = true;
        bReturnValue = window.confirm("You are about to delete the selected saved report. This          action cannot be reversed. Continue?");
        setValue(bReturnValue);
        return bReturnValue;
    }
</script>

1 个答案:

答案 0 :(得分:-1)

正如@joews所说,你还没有定义一个设定值函数。我认为这是你的主要问题。一个例子如下:

function setValue(){
  var value = arguments[0]; //this calls the value of the argument (the thing in parentheses)
  return value; 
}