我创建了 2 个 div 标签。在一个 div 标签中,我有链接,我想将结果显示到另一个标签中。
我的代码是:
<div>
<div id="loginDiv"><a href="login.php">LogIn</a></div>
<div id="loginPageDiv"></div>
</div>
如何在“loginPageDiv”中显示我的登录页面?
尝试使用ajax。--> http://api.jquery.com/jQuery.ajax/
例如
$('#loginDiv a').click(function(e){
e.preventDefault();
$.ajax({
type: "GET",
url: this.href,
}).done(function( html ) {
$("#loginPageDiv").append(html);
});
});
您可以使用 java Script (Ajax call) 来实现这一点
并在 ajax 调用中将结果设置为该 div id
document.getElementById("loginPageDiv").innerHTML = result
使用 jQuery:
<script>
$(function() {
$('#loginDiv a').click(function() {
$.get(this.href, function(data) {
$('#loginPageDiv').html(data);
});
return false;
});
});
</script>