我只是想在我的 div 中显示输出result2
.. 但输出保持在 action.php?me=1 ... 我在这里做错了什么.. url 问题或什么.. 我得到了输出但不在此页面中..
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script>
$(document).ready(function(){
$('a.pop').click(function(e){
$.ajax({
type: "GET",
url: this.href,
success: function(data){
$(".result2").append(html);
}
});
return false;
});
});
</script>
<body>
<a href="http://ex.com/free/action.php?me=1" class="member" id="member" rel="example">click to launch</a>
<div id="result2"></div>
</body>
</html>
提前感谢十几个...