显示在jquery代码下方
$(document).ready(function () {
$('#prvnote').hide();
$('#regclass').click(function () {
$('#prvnote').toggle(400);
$('#newdiv').toggle(400);
});
});
在HTML代码下方显示 此div仅用作菜单
<div id="regclass"><span>View Previous Note</span></div>
现在,当我点击上面的div内容时,将显示 当 答案 0 :(得分:0) 试试这个 答案 1 :(得分:0) HTML Jquery的 在这里检查小提琴手 答案 2 :(得分:0) 尝试this: 取自Sridhar R,我知道你想一次只显示一个div ...... <div id="newdiv"><form>......</form></div>
<div id="prvnote"><form>......</form></div>
div(newdiv)
显示然后跨度内容&#34; Post Note&#34;当div(prvnote)
显示时,span内容必须为&#34;查看上一个注释&#34; 3 个答案:
$(document).ready(function () {
$('#prvnote,#newdiv').hide();
$("#regclass").toggle(function () {
$('#regclass span').text('Post Note');
$('#prvnote').toggle(400);
$('#newdiv').toggle(400);
}, function () {
$('#regclass span').text('View Previous Note');
$('#prvnote').toggle(400);
$('#newdiv').toggle(400);
});
});
<div id="newdiv" style="display:none"><form>......</form></div>
<div id="prvnote"style="display:none"><form>......</form></div>
<div id="regclass"><span>View Previous Note</span></div>
$('#regclass').click(function () {
alert("Hi");
$("#regclass span").html("").append("POST NOW");
$('#prvnote').css({"display":"block"});
$('#newdiv').css({"display":"block"});
});
$(document).ready(function () {
$('#prvnote').hide();
$("#regclass").toggle(function () {
$('#regclass span').text('Post Note');
$('#prvnote').toggle(400);
$('#newdiv').toggle(400);
}, function () {
$('#regclass span').text('View Previous Note');
$('#prvnote').toggle(400);
$('#newdiv').toggle(400);
});
});