jQuery Plugin Check Version

前端 未结 15 943
轮回少年
轮回少年 2020-12-16 11:57

When writing a new jQuery plugin is there a straightforward way of checking that the current version of jQuery is above a certain number? Displaying a warning or logging an

15条回答
  •  一个人的身影
    2020-12-16 12:07

    Here is a check I used to make sure the user was using at least v. 1.3.2 of jQuery.

    if (/1\.(0|1|2|3)\.(0|1)/.test($.fn.jquery) 
                        || /^1.1/.test($.fn.jquery) 
                        || /^1.2/.test($.fn.jquery)) 
    {
        //Tell user they need to upgrade.
    }
    

提交回复
热议问题