我想在$('#formId').html()
之前和之后添加以下html代码,以便通过ajax调用添加/html>
来发布内容。
<html>
<title>Page</title>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />
</head>
<body ">
我要将formId值发布到generatecript但是我想在formId之前添加上面的html内容来发布数据
$.ajax({
type: 'post',
url: '/download',
data: {
filename: 'export.txt',
content: $('#formId').html,
},
success: function() {
window.top.location.href = "/generatescript";
}
});
答案 0 :(得分:0)
使用.prepend
和.append
您的要求。这是你的教程吧。 http://api.jquery.com/prepend/
http://api.jquery.com/append/