//抓取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, '<').replace(/\>/g, '>');
$(this).val(Text);
});
$("textarea").each(
function (indexs) {
var TAText = $(this).attr("value").replace(/\</g, '<').replace(/\>/g, '>');
$(this).val(TAText);
});
}
沒有留言:
張貼留言