function Button1_onclick() {
// document.getElementById("select").style.display="none";
// document.getElementById("Di").style.display="block";
saveForm2(".content");
}
function saveForm2(contentCss) {
inputList = $("input");
for (var item = 0; item < inputList.length; item++) {
inputList.eq(item).attr("value",inputList.eq(item).val());
}
inputList = $("input:checked")
for (var item = 0; item < inputList.length; item++) {
inputList.eq(item).attr("checked", "checked");
}
$("textarea").each(function(){
$(this).text($(this).val());
})
var postData = { "type": "add" };
//postData.value = escape($(contentCss).html());
postData.value = $(contentCss).html();
//alert(postData.value); John
//document.form1.documenttext.value =postData.value;
document.getElementById("documenttext").value=postData.value; //.innerHTML;
}
function checkit(){
}
function bao(s)
{
var text = s;
document.getElementById("Di").value=text;
}