从 ionRangeSlider 获取属性

get attributes from ionRangeSlider

我想从 ionRangeSlider 获取属性

<input num="<?php echo $fet_profiles["id"];?>" type="text" class="range"  value="<?php echo $fet_profiles["percent"]; ?>" name="range" />

我想得到 num

$(".range").ionRangeSlider({
    min: 25,
    max: 625,
    step: 1,
    prefix: "%",
    grid: true,
    onChange: function(data) {
        var val_percent = data.from;
        var id_prof = $(this).attr("num");
        alert(id_prof);
    }
});

给我看这个结果 => undefined !

解决方案是首先添加函数有变量 ex :

    function get_id(e){
    alert(e);
}

我们可以在输入 ex 中添加 onchange :

<input  onChange="get_id(10)" type="text" class="range"  value="100" name="range" />

工作我想感谢这个好人帮助我@AnthonyHaffey 抱歉如果我的英语不好,谢谢^_^