一些 jQuery 小技巧

取得一組 radio 的值

$(“input[name=’myradio’]:checked”).val()

動態組成一個 select

$(“#myselect”).html(“”);

for (var i = 0; i < selectOptions.length; i++) {

$(“#myselect”).append($(“<option></option>”).val(selectOptions[i]).html(selectOptions[i]));

}

存取 select 的每一個 option

$(‘#myselect option’).each(function (i,v) {

}

將文字輸入欄位設定為唯讀

$(‘#myinput’).attr(“readonly”,true);

顯示 html 元件

$(‘#mytable’).show

隱藏 html 元件

$(‘#mybutton’).hide()

勾選一個 checkbox

$(‘#mycheckbox’).attr(“checked”,true);

接下來這個就有點離題了,我都不知道 <p> tag 可以用來印表時換頁,看到了順便記一下

<p style=’page-break-after:always’>

 

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...