asp.net模板页实现类似jquery中document.ready

模板页先判断是否有方法DocumentReady,有的话就调用

1、模板页 

<script type="text/javascript" language="javascript">
        function DocumentLoad() {
            if (typeof (DocumentReady) == "function") {
                DocumentReady();
            }
        }
</script>

<body class="RecordBody" style="font-family:Arial" onload="DocumentLoad();">

<body>

 

2、内容页

 DocumentReady();

posted @ 2013-07-12 11:46  chengeng  阅读(251)  评论(0编辑  收藏  举报