通過Id遍歷標籤

$("input").each(function(){
var idobj=$(this).attr("id")
var dd=$(this).val();
document.getElementById(idobj).setAttribute("value", dd);
});
$("textarea").each(function(){
var idobj=$(this).attr("id")
var dd=$(this).val();
$(this).html(dd);
//document.getElementById(idobj).innerHTML =dd;
});
//遍歷單選
$('input:radio:checked').each(function () {
var idobj = $(this).attr("id");
document.getElementById(idobj).setAttribute("checked", "checked");
});
//遍歷多選
$('input:checkbox:checked').each(function () {
var idobj = $(this).attr("id");
document.getElementById(idobj).setAttribute("checked", "checked");
});

$('select option:selected').each(function () {
var idobj = $(this).attr("id");
document.getElementById(idobj).setAttribute("selected", "selected");


});



<fmt:formatDate value="${t.startTime}" type="date" dateStyle="long"/>
<fmt:formatDate value="${t.startTime}" type="time"/>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章