关于javascript弹出界面样式设计, 大神看过来

2024-12-12 21:52:23
推荐回答(2个)
回答1:

$("#msg_area").html('



<--开始添加-->

<--添加结束-->
');

function ReMsg()
{
msg = $("#msg").val();
msg1 = $("#msg1").val(); //这儿加上第2个文本框的取值
$.ajax({
url : "message_do.php",
type:'post',
data:{"action":"remsg", "msg":msg, "id":id,'msg1':msg1}, //这儿post到服务器添加一个QString
dataType:'html',
beforeSend:function(){},
success:HideReWin
});
}

回答2:

//显示回复窗口
function ShowReWin(reid)
{
id = reid;
var cont = $("#recont_"+id).attr("rel"); $("#graybg").show();
$("#popup_window").show();
$("#msg_area").html(' name="form" id="form" method="post">
class="sendbtn">/>');
}

这样 就会出现两个了