如何抓取Mustache模板绘制的元素?

时间:2017-04-13 00:35:46

标签: javascript jquery settimeout mustache

基本上我有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()等组合,但我无法在用户点击之前抓取该元素,但在它实际存在之后。

0 个答案:

没有答案