0

该项目: http: //www.atlas.dentasignclients.com/professionals

大家好,我正在为 myne 的一位商业朋友构建一个项目,其中涉及通过linkedin 发送工作申请。在用户发送工作申请并关闭框架后,我想将用户重定向到另一个页面,他们将在其中填写其他信息。

现在,linkedin 应用程序可以工作,但我无法让它做出响应。linkedin api 给出了一个带有 myOnsucesssFunction 的示例,但我无法让它工作。查看下面的 ccode,您将如何使重定向起作用?

代码,精简 -->

<script type="text/javascript" src="http://platform.linkedin.com/in.js">
  api_key: lus36y4mbt09
</script>

                                  <div class="pagination-centered">
                                        <script type="IN/Apply" data-companyname="Atlas China" data-jobtitle="Atlas China Member" data-joblocation="China" data-logo="http://atlas-china.com" data-email="abe@atlas-china.com"></script>
                                        <h4>or</h4>
                                    </div>

<script type="text/javascript">
  function myOnsucesssFunction(r) {
        alert("success");
        console.log(r);
        document.location = 'http://google.com/';
}
</script>
4

1 回答 1

0
<script type="text/javascript">
    function linkedInAppSuccess() {
     window.location = "<?php echo home_url('/'); ?>record-your-multi-lingual-abilties/"
    }
</script>


<script type="IN/Apply" data-companyname="Atlas China" data-jobtitle="Atlas China Member" data-joblocation="China" data-logo="http://atlas-china.com" data-email="abe@atlas-china.com" data-onsuccess="linkedInAppSuccess"></script>
于 2013-07-27T19:36:03.783 回答