頁面常用Jquery

2021-08-30 12:44:35 字數 1361 閱讀 3996

例一:迴圈獲取指定id下的子元素如:

$("#testul li").each(function());

例二:更改form下的屬性值

更改pageindex的值

$("#workitemlistform [name='pageindex']").attr("value", "1");

或者$("#workitemlistform [name='pageindex']").val("12");

如需修改action的值:$("#workitemlistform").attr("action","new action url");

例三:讓滑鼠經過**的行時更改樣式,移開時還原

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

測試測試測試

jquery**:

$("#tblworkitemlist > tbody > tr").each(function(i) );

$(this).mouseout(function() );

});例四:核取方塊的全選

jquery**:

$("#chkselectall").bind("click", , toggleselect);

function toggleselect(event) else

}例五:彈出頁面

//g_dialogfeaturesforcomment:定義彈出頁的樣式, varguments是傳入彈出頁的值(可以是物件varguments = new object(),varguments.type="test";)

var g_dialogfeaturesforcomment = "dialogheight: 350px; dialogwidth: 400px; center: yes; edge: raised; resizable: no; scroll: yes; status: no;";

retvalue= showmodaldialog(openurl, varguments, g_dialogfeaturesforcomment);

在彈出頁獲取傳入引數方法為:var obj = window.dialogarguments;

設定彈出頁關閉時的返回物件:window.returnvalue = retvalue; window.close();

tomcat 亂碼,修改uriencoding:

例六:js 陣列下標非固定迴圈

例七:頁面map已知key取value

value的值可以有迴圈過程中獲取

141,164 為id

jquery關於頁面

1 獲取和設定元素的尺寸 width height 獲取元素width和height innerwidth innerheight 包括padding的width和height outerwidth outerheight 包括padding和border的width和height outerwid...

jQuery 頁面取值

1.jquery給span div lable取值 id html 2.jquery給input取值 id val 3.jquery給textarea取值 id val 4.jquery給radio取值 非主創 今天寫js的時候發現利用jquery取不到radio的當前值,上網google下,發現網...

jquery頁面載入

jquery事件新增,全部採用現代事件新增方式,乙個事件可以繫結多個函式 jquery物件 dom轉化為jquery var obj document.getelementbyid div1 dom物件轉化為jquery var jq obj alert jq.html jquery轉為dom va...