判断浏览器的兼容问题:
IE9+支持地理定位,FF Chrome新版支持地理定位
if (navigator.geolocation) {
alert('支持地理定位');
} else {
alert('不支持地理定位');
}
获取自己位置经纬度
var x=d...
JavaScript替换HTML标签
1、说明
获取HTML字符串(包含标签),通过正则表达式替换HTML标签,输出替换后的字符串
2、实现JavaScript代码
function deleteTag()
{
var regx = /]*>|]*>/gm;
var tagStr = $("#ul_li").html();
alert("替换之前的字符串:...
分类:
编程语言 时间:
2014-06-11 00:06:44
阅读次数:
264
一直在使用js编写自以为是面向对象的方法,遇到一个问题,就是定义一个方法,如下:
function ListCommon2(first,second,third)
{
this.First=function ()
{
alert("first do"+first);
}
}
ListCommon2.do...
分类:
Web程序 时间:
2014-06-10 13:53:01
阅读次数:
240
ie8以下if(!+[1,]) if(window.attachEvent){
alert("ie")}else if(window.addEventListener){alert("not
ie")}else{alert("不支持DHTML")}ie6if(document.all)ie浏览器 !...
分类:
其他好文 时间:
2014-06-09 20:22:25
阅读次数:
221
UIAlertViewUIAlertView *alert = [[UIAlertView
alloc]initWithTitle:@"出错了"message:@"网络连接失败,请稍后重试"delegate:nil
cancelButtonTitle:@"好的" otherButtonTitles....
分类:
其他好文 时间:
2014-06-09 17:35:52
阅读次数:
217
1,考察thisvar length = 10function fn(){
alert(this.length)}var obj = { length: 5, method: function(fn) { fn() // ?
arguments[0]()...
分类:
Web程序 时间:
2014-06-09 16:31:11
阅读次数:
293
http://www.cnblogs.com/flyoung2008/archive/2012/03/13/2393680.htmlhttp://www.educity.cn/wenda/114602.html
分类:
移动开发 时间:
2014-06-09 13:12:50
阅读次数:
189
前言为啥写这篇文章?因为我现在做的这套实时计算系统在公司里很难玩下去了。去年年初来到ctrip,主要就是做两个实时应用,一个是实时报警,功能是做出来了,但应用效果不好;一个是XXX(敏感应用,不敢写出来,以XXX代替),也是实现了功能需求,但想继续按自己的思路往下走是不可能了,我捉急的表达能力很难让...
分类:
其他好文 时间:
2014-06-09 13:02:27
阅读次数:
676
原始form表单值获取方式(手动):$.ajax({
type: "POST",
url: "ajax.php",
data: "Name=摘取天上星&position=IT技术",
success: function(msg){alert(msg);},
error: function(error){alert(error);}
});JQ serialize()...
分类:
Web程序 时间:
2014-06-08 16:19:01
阅读次数:
280
var Cts = "bblText";
if(Cts.indexOf("Text") > 0 )
{
alert('Cts中包含Text字符串');
}
indexOf用法:
返回 String 对象内第一次出现子字符串的字符位置。
strObj.indexOf(subString[, startIndex])
参数
...
分类:
Web程序 时间:
2014-06-08 05:00:36
阅读次数:
300