javascript使用call調用微信API,callapi

來源:互聯網
上載者:User

javascript使用call調用API,callapi

代碼很簡單,只是給大家一個思路的,這裡就不多廢話了,奉上源碼:

複製代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<title>Js API Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="dns-prefetch" href="http://mmbiz.qpic.cn">
<link rel="dns-prefetch" href="http://res.wx.qq.com">
<meta name="viewport" content="width=device-width,height=device-height,inital-scale=1.0;">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<style type="text/css">
p {
padding: 5px 10px;
}
</style>
<script type="text/javascript" src="WeixinApi.js?v=1"></script>
</head>
<body>
<script language="javascript">
<!--
        function Class1() {
           
            this.name = "class1";
            this.aaa = "aaa";
            this.showNam = function() {
                alert(this.name);
            }
        }
        function Class2() {
            this.name = "class2";
        }
        var c1 = new Class1();
        var c2 = new Class2();
        //c1.showNam();
        c1.showNam.call(c2);//對象置換,針對方法而言
        c1.aaa.call(c2);//錯誤,只能針對方法繼承,屬性不支援
-->
</script>

</body>
</html>

這裡只是介紹思路給大家,具體的小夥伴們自由發揮吧。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.