="text/javascript">
var inptext = $('.protit').html();
$('.btn1').click(function(){
$('#message').css({
"transform":"scale(1)",
"transition":".5s"
});
$('.protitle').val(inptext);
})
$('.messagebg').click(function(){
$('#message').css({
"transform":"scale(0)",
"transition":".5s"
});
})
function login() {
$.ajax({
type: "POST",
type: "POST",
dataType: "json",
url: "https://www.daxia365.cn/changxing_myform/",
data: $('#myform1').serialize(),
success: function (result) {
console.log(result);
if (result.status == "success") {
$('#myform1')[0].reset();
$('#message').css({
"transform":"scale(0)",
"transition":".5s"
});
alert("提交成功");
}else {
alert(result.msg);
}
},
error : function() {
alert(result.msg);
}
});
}
<