gpt4 book ai didi

jquery - 使用 jQuery 获取 2 个 ID 并显示自定义内容

转载 作者:行者123 更新时间:2023-11-28 03:35:23 25 4
gpt4 key购买 nike

我是 jQuery 的新手,我知道这个问题可能看起来很愚蠢。但是,这是我到目前为止所拥有的... http://jsfiddle.net/jHyJu/

$('[id^=content]').hide();
$('#baseSection').delegate("li", "click", function() {
var id = $(this).attr('id').replace('bcontent','');
$("#baseContent").html($("#content-"+id).html());
});

$('[id^=content]').hide();
$('#headSection').delegate("li", "click", function() {
var id = $(this).attr('id').replace('hcontent','');
$("#headContent").html($("#content-"+id).html());
});

我需要脚本来组合点击的 ID,以便显示自定义内容。

最佳答案

利用三元运算符: http://jsfiddle.net/jHyJu/1/

    $('[id^=content]').hide();
$('#baseSection, #headSection').on("click", "li", function () {
var id = ($(this).parent().attr('id') == 'selectable') ? $(this).attr('id').replace('bcontent', '') : $(this).attr('id').replace('hcontent', '');
$("#baseContent").html($("#content-" + id).html());
});

并使用 .on() 代替如果您使用的是 jquery 版本 1.7+

关于jquery - 使用 jQuery 获取 2 个 ID 并显示自定义内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14768292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com