2014/10/06 / 最終更新日時 : 2014/10/06 米良太 ASP.NET MVC ASP.NET MVC ルーティング グローバルアプリケーションファイル Global.asax アプリケーション共通で起動時に実行するイベントを設定 public class MvcApplication : System.Web.HttpApplicat […]
2014/10/05 / 最終更新日時 : 2014/10/05 米良太 ASP.NET MVC ASP.NET MVC ActionResult ViewResult public ActionResult Index() { return View(); } ↓ と同じ ViewResult vr = new ViewResult(); vr.ViewBag […]
2014/10/02 / 最終更新日時 : 2014/10/02 米良太 ASP.NET MVC ASP.NET MVC 外部レイアウト/部分ビュー 外部レイアウト 通常のView(レイアウト使用無し) @{ Layout = null; } <!DOCTYPE html> <html> <head> <title&g […]
2014/09/26 / 最終更新日時 : 2014/09/26 米良太 ASP.NET MVC ASP.NET MVC 流れ View(遅延実行) @model IEnumerable<MvcBasic.Models.Member> ※コンテキスト:Memberを参照する事を宣言。 コンテキストを通してエンティティクラス(モデル) […]
2014/09/18 / 最終更新日時 : 2014/09/18 米良太 jQuery jQuery Post $.post( ”test.php”, { “prm1″:”100”, “prm2″:”aaa̶ […]
2014/09/18 / 最終更新日時 : 2014/09/18 米良太 jQuery jQuery Validation jQueryライブラリ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></scr […]
2014/09/18 / 最終更新日時 : 2014/09/18 米良太 jQuery jQuery Ajax 概要 Asynchronous JavaScript + XML 非同期通信 JavaScriptを使用し、ページ全体の再ロードを行わずにXMLデータだけをやり取りする技術 $.get(url, params, call […]
2014/09/18 / 最終更新日時 : 2014/09/18 米良太 jQuery jQuery 属性とCSSの操作 汎用 attr() ※html属性:attributeを取得/設定 htmlにおける属性については「html属性一覧」参照 $(要素).attr( 属性名 , 値 ) または、 $(要素).attr( 属性名 ) = 値 […]
2014/09/15 / 最終更新日時 : 2014/09/15 米良太 jQuery jQuery DOM操作 一覧 命令 機能 例 text(~) テキスト変更 text() テキスト取得 html(~) テキスト変更 html() テキスト取得 prepend(~) 要素の先頭へHTML挿入 append(~) 要素の末尾へH […]
2014/09/14 / 最終更新日時 : 2014/09/14 米良太 jQuery jQuery エフェクト・アニメーション 設定値 ミリ秒の他に、"slow","normal","fast"を設定可能。 hide() 対象を非表示に $(対象).hide(); show() 対象を表 […]