gpt4 book ai didi

jquery - 如何从 checkin 和 checkout
  • 中获取值(value)?
  • 转载 作者:行者123 更新时间:2023-12-01 01:51:37 26 4
    gpt4 key购买 nike

    如何从 checkin 和 checkout 中获取值(value) <li> ?我已经有很多了<ol><li>正如您在此图中所看到的:http://s2.subirimagenes.com/otros/previo/thump_7254872hot.jpg

    我需要捕获 checkin 值(在图像中,从拖动的橙色线开始),直到 mousedown (退房)但我只需要入住和退房的值(value)。

    对于拖动我有这样的东西:

    $(function() {
    $( ".ui-selectable" ).selectable({
    options:{
    autoRefresh: true,
    distance: 40,
    disabled:true,
    filter: '*',
    tolerance: 'touch'
    },
    stop: function() {
    var result = $( "#select-result" ).empty();
    $( ".ui-selected", this ).each(function() {
    var index = $( "#selectablecls li" ).index( this );
    result.append( " #" + ( index + 1 ) );
    });
    }
    });
    });

    还有很多<li>

    <ol id="selectable" class="ui-selectable selectablecls">
    <li class="null ui-state-default ui-selectee grdborder _a" style="width:28px" id="2011_11_07_9700000000000006_9700000000000002_a" rel="1" title="" width="28px"></li>
    <li class="null ui-state-default ui-selectee grdborder _b" style="width:28px" id="2011_11_07_9700000000000006_9700000000000002_b" rel="2" title="" width="28px">
    ....

    正如您在此图中看到的:http://s2.subirimagenes.com/otros/previo/thump_7254872hot.jpg

    最佳答案

    看看这个:https://github.com/tomasdev/jQuery-Scheduler/blob/master/index.html#L92

    基本上,我们的想法是,我们的网格是宽度固定的,然后您可以在知道该宽度的情况下计算天数/单元格。然后你只需要算出月份,并将“本月的这一天”保存为开始,将“那月的那一天”保存为结束边缘。

    如果还不够清楚,我会进一步解释。

    关于jquery - 如何从 checkin 和 checkout <li> 中获取值(value)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8578988/

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