2011年8月19日 星期五

jQuery 語法範例

jQuery 取得所有 input type="text" 的ID

//抓取ID
$("input[type^='text']").each( //取得所有 input type=text 的 id
function (indexs) {
alert($(this).attr("id"));
});

$("textarea").each( //取得所有 textarea 的 id
function (indexs) {
alert($(this).attr("id"));
});

jQuery 取得所有 input type="text" 及 textarea 並填入資料

//填入值
$("input[type^='text']").each(
function (indexs) {
$(this).val('aaaa');
});
$("textarea").each(
function (indexs) {
$(this).val('112212121212');
});

jQuery 取得所有 input type="text" 並置換符號
    function RPmark() {

$("input[type^='text']").each(
function (indexs) {
var Text = $(this).attr("value").replace(/\</g, '&lt;').replace(/\>/g, '&gt;');
$(this).val(Text);
});
$("textarea").each(
function (indexs) {
var TAText = $(this).attr("value").replace(/\</g, '&lt;').replace(/\>/g, '&gt;');
$(this).val(TAText);
});
}

沒有留言:

張貼留言