test.vm 900 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>task</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<script src="/scripts/jquery.min.js"></script>
<script src="/scripts/layer/layer.js"></script>
</head>
<body>
<textarea id="content" style="width: 100%;height: 200px;"></textarea><br>
<button class="btn btn-sm btn-danger" onclick="tijiao();">执行</button>

<script>
function tijiao() {
$.post("/v1/articles?articleType=1&categoryId=4156&image=Fo4ijZGCGQet9kuEtWPWnEEsRqQb&imageType=2&introduction=414&link=&tagIds=298&title=414&type=3&weight=2",{content:$("#content").val()},function(data){
alert(data);
});
}
</script>

</body>
</html>