如果有人单击链接,是否可以做某事?我需要知道何时有人单击该链接,因为如果是这样,我想执行一些代码。
a = soup.find('a') #there is only one link in the page
所以在伪代码中我需要这样的东西:
if a.clicked() == "true":
print "link clicked"
如果有人单击链接,是否可以做某事?我需要知道何时有人单击该链接,因为如果是这样,我想执行一些代码。
a = soup.find('a') #there is only one link in the page
所以在伪代码中我需要这样的东西:
if a.clicked() == "true":
print "link clicked"