C#バックグラウンド登録スクリプト
719 ワード
$(this).hide()
jQuery hide()関数を示し、現在のHTML要素を非表示にします.
$("#test").hide()
jQuery hide()関数を示し、id=「test」の要素を非表示にします.
$("p").hide()
jQuery hide()関数を実証し、すべての
要素を非表示にします.
$(".test").hide()
jQuery hide()関数を示し、すべてのclass=「test」の要素を非表示にします.
2、次のコード:class="asdf 3"にnumeral()メソッドを追加
ClientScript.RegisterStartupScript(this.GetType(), "", "$( function(){ $('.asdf2').numeral(); } );", true);
3、これは、ドキュメントが完全にロード(準備完了)される前にjQueryコードを実行しないようにするためです.
$(document).ready(function(){
--- jQuery functions go here ----
});