我创建了2个div标签。在其中一个div标签中,我有链接,我想将结果显示在另一个标签中。
我的代码是:
<div>
<div id="loginDiv"><a href="login.php">LogIn</a></div>
<div id="loginPageDiv"></div>
</div>
如何在“loginPageDiv”中显示我的登录页面?
答案 0 :(得分:2)
尝试使用ajax。 - &GT; 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);
});
});
答案 1 :(得分:0)
你可以使用java Script(Ajax调用)来实现这个
并在ajax调用中将结果设置为div id
document.getElementById("loginPageDiv").innerHTML = result
答案 2 :(得分:0)
使用jQuery:
<script>
$(function() {
$('#loginDiv a').click(function() {
$.get(this.href, function(data) {
$('#loginPageDiv').html(data);
});
return false;
});
});
</script>