基本上我有Mustache JS抽取一些数据,并且数据中有一个按钮,我需要在点击之前更改某个点的href属性。我试过这段代码:
$(document).ready(function(){
setTimeout(function(){
if($('.element_to_check').attr('href').includes('stringtocheck') ){
$('.target_element').attr('href', 'http://www.newhref.com/stuff');
}
}, 10000);
});
使用setTimeout(),document.ready()等组合,但我无法在用户点击之前抓取该元素,但在它实际存在之后。