高章伟
2022-03-18 4bfe21c4b5ddc089ae5a95f4b10f6cff148b690d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- 需要按照转授权字段的ID 改这里-->
<apex:page standardController="SubAuthorized__c" showHeader="false" sidebar="false">
    <script type="text/javascript">
        function init() {
            var str = '/a3Q/e?&Name=*';
            if(getParam('retURL') != null){
                str += '&retURL='+getParam('retURL');
            }
           // alert(getParam('CF00N10000008qp8Z'));
            if(getParam('CF00N10000008qp8Z') != null){
                str += '&CF00N10000008qp8Z=*';
            }
            if(getParam('CF00N10000008qp8Z_lkid') != null){
                str += '&CF00N10000008qp8Z_lkid='+getParam('CF00N10000008qp8Z_lkid');
            }
            str += '&nooverride=1';
            window.open(str,'_self');
        }
        function getParam(paramName) {
            paramValue = "", isFound = !1;
            if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {
                arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&"), i = 0;
                while (i < arrSource.length && !isFound) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++
            }
            return paramValue == "" && (paramValue = null), paramValue
        }
    </script>
    <body onload="init()">
    </body>
</apex:page>