@Rookie
2019-04-03T19:16:01.000000Z
字数 1425
阅读 1080
panda
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<script language="javascript">
<!-- // 调用原生登录方法 -->
function loginClick() {
PandaWebView.loginAction();
}
<!-- // 调用原生分享方法 -->
function shareClick() {
// 标题 内容 imgurl (图片URL) shareurl(分享url)
PandaWebView.shareAction('标题','内容','imgurl', 'shareurl');
}
<!-- // 调用原生支付 -->
function payClick() {
<!-- // 订单号 金额 订单信息 支付方式(wxpay:微信支付 aliPay: 支付宝支付 pursePay:钱包余额支付) -->
PandaWebView.payAction('201511120981234','3','wxpay','单程车票');
}
<!-- // 调用原生返回 -->
function backClick() {
PandaWebView.backAction();
}
<!-- // 登录成功返回 用户ID 登录ID 名字 -->
function loginResult(userId,loginId,name) {
var content = userId+","+loginId+","+name;
asyncAlert(content);
document.getElementById("returnValue").value = content;
}
<!-- // 支付订单ID 支付金额 支付结果code 支付渠道 信息 -->
function payResult(orderid,amount,resultCode,channel,message) {
var content = resultCode+","+channel+","+message+","+orderid+","+amount;
asyncAlert(content);
document.getElementById("returnValue").value = content;
}
function asyncAlert(content) {
setTimeout(function(){
alert(content);
},1);
}
</script>
</head>
<body>
<h1>这是按钮调用</h1>
<input type="button" value="支付" onclick="payClick()" />
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<script language="javascript">
<!-- // 调用原生登录方法 -->
function callPhoneClick() {
PandaWebView.callPhoneAction('1312312341');
}
</script>
</head>
<body>
<h1>这是按钮调用</h1>
<input type="button" value="打电话" onclick="callPhoneClick()" />
</body>
</html>