如果我的问题看起来很肤浅,那我就是jQuery的新手,真诚的道歉。我想知道如何使用div
中的按钮将内容放在另一个div
中,当使用jQuery单击任何一个按钮时。当然,每个按钮都会在我想要更改的特定div
中加载自己的内容。
感谢您的期待
答案 0 :(得分:0)
关注jquery可以提供帮助
$('#buttonid').click(function(){
$('#div2id').load('page.html');
}
答案 1 :(得分:0)
这非常简单:
$("#buttonA").on("click", function() {
$("#theDiv").load("http://theUrl");
});
$("#buttonB").on("click", function() {
$("#theDiv").load("http://theOtherUrl");
});
将#buttonA
,#buttonB
,#theDiv
替换为您的特定选择器。
更好的方法是使用data
属性:
<button class="link-btn" data-url="http://theUrl">load A</button>
<button class="link-btn" data-url="http://theOtherUrl">load B</button>
和...
$(".link-btn").on("click", function() {
$("#theDiv").load($(this).data("url"));
});
答案 2 :(得分:0)
以下是代码:
$('#yourDivId').load('content.html'); // Your content source