jtd/templates/index.html

23 lines
588 B
HTML
Raw Normal View History

2011-07-05 11:03:02 +00:00
<!doctype html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#sendmsg').click(function() {
var msg = $('#msg').val();
$.get("/testmsg/", {
'msg': msg
}, function(response) {
alert(response);
});
});
});
</script>
</head>
<body>
Hello {{ foo }}: <br />
Cmd: <input type="text" id="msg" /> <button id="sendmsg">Send</button>
</body>
</html>