12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <%@page import="com.chinacreator.common.util.DESUtil"%>
- <%@page import="com.chinacreator.common.util.AESUtil"%>
- <%@ page language="java" contentType="text/html; charset=utf-8"
- pageEncoding="utf-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Insert title here</title>
- <script type="text/javascript" src="js/jquery.js"></script>
- <script type="text/javascript" src="js/jquery.form.js"></script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- </head>
- <%
- String tuserid = DESUtil.encode("18620198994", "tenc1234");
- String iuserid = DESUtil.encode("18620198994", "a23c4140");
- %>
- <script type="text/javascript">
- function send1(){
- $.ajax({
- type:'get',
- url:"sendSmsCode.do?userid=<%=tuserid%>&cpid=tencent&spid=6&apptype=1",
- cache:false,
- dataType:"text",
- success:function(msg){
- alert(msg);
- }
- });
- }
- function send2(){
- $.ajax({
- type:'get',
- url:"sendSmsCode.do?userid=<%=tuserid%>&cpid=tencent&spid=99119423&apptype=1",
- cache:false,
- dataType:"text",
- type:"post",
- success:function(msg){
- alert(msg);
- }
- });
- }
- function send3(){
- $.ajax({
- type:'get',
- url:"sendSmsCode.do?userid=<%=tuserid%>&cpid=tencent&apptype=1",
- cache:false,
- dataType:"text",
- success:function(msg){
- alert(msg);
- }
- });
- }
- function send4(){
- $.ajax({
- type:'get',
- url:"sendSmsCode.do?userid=<%=iuserid%>&cpid=ifeng&apptype=1",
- cache:false,
- dataType:"text",
- success:function(msg){
- alert(msg);
- }
- });
- }
- </script>
- <body>
-
- 腾讯15元包月
- <input type="button" value="发送短信" onclick="send1()" />
- <br />
- 腾讯首月免产品
- <input type="button" value="发送短信" onclick="send2()" />
- <br />
- 腾讯产品
- <input type="button" value="发送短信" onclick="send3()" />
- <br />
- 凤凰产品
- <input type="button" value="发送短信" onclick="send4()" />
- </body>
- </html>
|