我有以下代码。
为什么没有数据发送?
<html>
<button>Click</button>
<script type="text/javascript">
$("button").click(function() {
$.ajax({
data:{ name: "Alisha", city: "USA" },
url:"myurl",
type:"POST",
contentType:"application/json; charset=utf-8",
dataType:"json",
success: function(){ alert("Hello!"); }
})
}
</script>
</html>