首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

ajax调用后台方法解决方案

2013-11-21 
ajax调用后台方法script//15秒倒计时var start 15var step -1function count(){document.getEleme

ajax调用后台方法
     <script>
        //15秒倒计时
         var start = 15; 
        var step = -1;
        function count() 
        {
            document.getElementById("DaoJiShi").innerHTML = start;
            start += step;
            if (start < 0)
                start = 15;
            setTimeout("count()", 1000);
        }
        window.onload = count;
    </script>

当start=0时,如何调用后台select()方法?
求指教。。。
[解决办法]
 $.post("../MyWorkFlow/WorkFlowApprove.ashx", { "billcode": billcode, "mind": " ", "action": "disagree" }, OnApproveSuccess);

热点排行