You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
735 B
27 lines
735 B
<html xmlns="http://www.w3.org/1999/html">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>参数管理</title>
|
|
{% load staticfiles %}
|
|
<script src="{% static "js/jquery-3.2.1.min.js"%}"></script>
|
|
<script>
|
|
$(function () {
|
|
$("button").click(function(){
|
|
$("form").attr("method",$(this).attr("id")).submit();
|
|
});
|
|
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form action="/tsdm">
|
|
{% csrf_token %}
|
|
<label>参数名<input name="param_name" value="{{param_name}}"/></label>
|
|
<label>参数值<input name="param_value" value="{{param_value}}"/></label>
|
|
<div>
|
|
<button id="POST">设置</button>
|
|
<button id="GET">获取</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |