根据类别而非ID连接到链接的锚定标记

时间:2018-09-21 16:41:36

标签: html css

我正在使用CMS的客户端站点中放置一些跳过导航,该CMS中放置了导航链接。 CMS不允许输入ID,但允许输入类。

通常我会做类似的事情:

from flask import Flask

import concurrent.futures
from concurrent.futures import ThreadPoolExecutor
import time


def foo(*args):
    while True:
        print('foo', args)
        time.sleep(10)


app = Flask(__name__)

executor = concurrent.futures.ThreadPoolExecutor()


@app.route('/cache')
def cache():
    executor.submit(foo, '1')
    executor.submit(foo, '2')
    return 'in cache'

有没有一种方法可以使用class将锚标记连接到div?

0 个答案:

没有答案