码迷,mamicode.com
首页 >  
搜索关键字:tel    ( 695个结果
php 联系电话验证(手机和固话)
$tel='要验证的联系电话';$isMob="/^1[3-5,8]{1}[0-9]{9}$/";$isTel="/^([0-9]{3,4}-)?[0-9]{7,8}$/";if(!preg_match($isMob,$tel) && !preg_match($isTel,$tel)){ exit(...
分类:移动开发   时间:2014-12-17 16:12:18    阅读次数:256
ios调打电话代码
// 定义点击拨号按钮时的操作- (void)callAction{NSString *number = @"";// 此处读入电话号码// NSString *num = [[NSString alloc] initWithFormat:@"tel://%@",number]; //number为...
分类:移动开发   时间:2014-12-16 11:25:45    阅读次数:191
批量查询手机号归属地
'', 'supplier'=>''); //初始化变量 //根据淘宝的数据库调用返回值 $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time(); $co...
分类:移动开发   时间:2014-12-12 18:24:15    阅读次数:227
【iOS开发-86】真机调试:打电话telprompt和跳转到appstore评价应用的openurl
打电话:建议用telprompt://而不用tel://,因为前者有拨打前提示,且拨打完成后回到原先应用界面。...
分类:移动开发   时间:2014-12-12 16:45:41    阅读次数:202
iOS调用发邮件,打电话,发短信,自带浏览器接口的介绍
1、调用 自带mail [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];   2、调用 电话phone [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://80...
分类:移动开发   时间:2014-12-12 11:49:32    阅读次数:220
IOS调用电话,短信等
1、 调用 电话phone   iOS应用内拨打电话结束后返回应用   一般在应用中拨打电话的方式是:     NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel:10086"]];    [[UIApplication sharedApplication] openURL:url]; ...
分类:移动开发   时间:2014-12-08 12:29:09    阅读次数:339
c#短信接口代码实现(发短信)
我这里以56短信接口为例!首先需要到56短信网上去注册个账号,代码中需要用到4个参数:企业ID、用户名、密码、所用平台在里面充钱配合下面的代码就可以发送短信啦!publicvoidSend(stringorderIDs,stringmobile,stringproductName){//下文中的tel:就是要发送的手机号码//msg:..
分类:Windows程序   时间:2014-12-05 19:38:37    阅读次数:254
用PostGreSQL实现三层(复习)
modal DAL,BLL都是类库的形式 最终结果如下: 数据库代码: -- Table: student -- DROP TABLE student; CREATE TABLE student ( name text NOT NULL, "number" integer NOT NULL, tel...
分类:数据库   时间:2014-12-05 17:06:42    阅读次数:235
android 打电话
OnClickListenercListener=newOnClickListener(){ @Override publicvoidonClick(Viewv){ Buttonbt=(Button)v; StringcallNumber=bt.getText().toString(); Intentintent=newIntent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+callNum..
分类:移动开发   时间:2014-12-02 12:03:38    阅读次数:172
jQuery Validate验证方法及教程
//实名认证 验证$(function(){ //中文姓名验证 jQuery.validator.addMethod("zh_verify", function(value, element) { var tel = /^[\u4E00-\u9FA5\uf900-\ufa2...
分类:Web程序   时间:2014-11-27 18:01:08    阅读次数:183
695条   上一页 1 ... 61 62 63 64 65 ... 70 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!