Jquery常用
849 ワード
スタイルの変更
1、div
2、input
3、form
if (now == null || now == "" || now == "null") { // "null"
now = "opt_11";
}
$("#"+now).css("display", "");
$("#img"+now).attr("src","images/index/close.gif");
$("#img"+now).attr("alt"," ");
1、div
//
$("#div_id").text('');
//
$("#div_id").hide();
2、input
// this
this.value //
//
$("#input_id").val()
3、form
// action
$("form").attr('action','').submit();