1. ホーム
  2. Web制作
  3. HTML/Xhtml

指定した行の無線ラジオボックスをチェックし、その行までスクロールするLayuiフォームの実装コード

2022-01-07 06:56:47

layuiテーブルには複数行のデータがあり、外部入力コンテンツでは、指定した行を探し出し、変更行を選択し、変更行に対してアクションを実行する必要があります。

効果

HTMLコードです。

    convert = {
    '__lt__': [('__gt__', lambda self, other: other < self),
               ('__le__', lambda self, other: not other < self),
               ('__ge__', lambda self, other: not self < other)],
    '__le__': [('__ge__', lambda self, other: other <= self),
               ('__lt__', lambda self, other: not other <= self),
               ('__gt__', lambda self, other: not self <= other)],
    '__gt__': [('__lt__', lambda self, other: other > self),
               ('__ge__', lambda self, other: not other > self),
               ('__le__', lambda self, other: not self > other)],
    '__ge__': [('__le__', lambda self, other: other > = self),
               ('__gt__', lambda self, other: not other >= self),
               ('__lt__', lambda self, other: not self >= other)]
}

バックエンドのコードです。

    convert = {
    '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)),
               ('__le__', lambda self, other: self < other or self == other),
               ('__ge__', lambda self, other: not self < other)],
    '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
               ('__lt__', lambda self, other: self <= other and not self == other),
               ('__gt__', lambda self, other: not self <= other)],
    '__gt__': [('__lt__', lambda self, other: not (self > other or self == other)),
               ('__ge__', lambda self, other: self > other or self == other),
               ('__le__', lambda self, other: not self > other)],
    '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
               ('__gt__', lambda self, other: self >= other and not self == other),
               ('__lt__', lambda self, other: not self >= other)]
}

この記事は、Layuiフォームラジオボックスと実装コードの行にスクロールの指定行を選択すると、これに導入され、より関連Layuiフォームラジオボックススクロール内容は、以前の記事のスクリプトのホームを検索してくださいまたは次の関連記事を閲覧を継続、私はあなたが将来的に多くのスクリプトのホームをサポートして願っています!...