- 浏览: 210693 次
- 性别:
- 来自: 深圳
最新评论
-
鲁迪尼:
你真是帮了大忙了,头疼了好几天了,给你鞠个躬
android.app.SuperNotCalledException did not call through to supper onCreate()的问题 -
songhaikang:
我加了还是不行啊
android.app.SuperNotCalledException did not call through to supper onCreate()的问题 -
miracle淡淡:
也没人回答呢~ 我也出现了类似的问题 怎么解决的哇~
ibatis项目,tomcat启动时报Attribute "resultClass" must be declared for element type "de -
JimRoyer:
怎么调用呢,写个例子撒
基于jQuery气泡提示插件qTip的使用小总结 -
lina830210:
在哪里删除模拟器中的程序呢?也就是说模拟器的程序在哪里呢?
2010-03-23Android Please execute 'adb uninstall com.xxxx.xxxx.xxxx' in a shell.
文章列表
遇上这样的问题,var v=$("#content").val();
if(v.trim().length==0){}
在FF,chrome,opera这些浏览器测试没有问题,但在ie就老是不通过,也没有报异常,后来想起是不是trim()函数出了问题,就把trim()去掉,结果好了。
新代码如下:
if(v.length==0){}
由于工作需要,在本地配置测试环境,用apache配置多个虚拟域名,如www.test.com,img1.test.com。在网上查了好多资料,基本步骤是这样的,一、修改hosts文件,添加127.0.0.1 www.test.com 127.0.0.1 img1.test.com的域名映射;二、修改apache conf--> extra目录下的httpd-vhosts.conf文件,在最后加上
<VirtualHost *:80>
DocumentRoot "E:/xxxx/www/test"
ServerName w ...