2012年9月12日 星期三

jquery 驗證在ie失效


今天使用管理NuGet套件自動更新 JS 發現在IE下驗證失效

後來手動更新JS至專案即可.......


jquery.validate version 1.8.1

The following files are hosted on the CDN:

  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate-vsdoc.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/additional-methods.js
  • http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/additional-methods.min.js
  • Localization Files at http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/localization/messages_##.js where ## is the loc code.

無法登入資料庫


原本
<add name="xxxEntities" connectionString="metadata=res://*/Models.xxxModel.csdl|res://*/Models.xxxModel.ssdl|res://*/Models.xxxModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=192.168.1.208;initial catalog=xxx;integrated security=True;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />

更改後
<add name="xxxEntities" connectionString="metadata=res://*/Models.xxxModel.csdl|res://*/Models.xxxModel.ssdl|res://*/Models.xxxModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=192.168.1.208;initial catalog=xxx;user id=xxx;password=xxx;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />

2012年9月11日 星期二

jquery css

1
2
3
4
//將欄位隱藏
$("#id").css({ display: "none" }); 
//將欄位顯示
$("#id").css({ display: "table" });

2012年9月10日 星期一

讓ie瀏覽器標準化


<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可