代碼很簡單,只是給大家一個思路的,這裡就不多廢話了,奉上源碼:
復制代碼 代碼如下:
<!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>
這裡只是介紹思路給大家,具體的小伙伴們自由發揮吧。