代码如下:
<html>
<head>
<meta charset=*utf-8*>
<title>blog</title>
{% load staticfiles %}
<script type="text/javascript" src="{% static "js/jquery-1.11.1.min.js"%}"></script>
</head>
<body>
<form id="form" method="post">
{% csrf_token %}
<input type="text" id="username" name="username" class="mws-login-username" placeholder="username"><br/>
<input type="password" id="password" name="password" class="mws-login-password" placeholder="password"><br/>
<input type="button" value="Login" id="userLogin" class="btn btn-success mws-login-button">
</form>
<script type="text/javascript">
$(function(){
$(*#userLogin*).click(function(){
alert(*msg*);
$.ajax({
type: "POST",
url: "{% url *blog.views.xy_login*%}",
data: {username:$("#username").val(), content:$("#content").val()},
dataType: "json",
success: function(data){
alert(data);
}
});
});
})
</script>
</body>
</html>