how to replace 'dollar' sign with another character used in jquery?

后端 未结 3 1390
忘掉有多难
忘掉有多难 2021-01-05 22:43

How will I change the dollar sign (alias for \'jquery\') used in jquery with another character. For example

$(\"#id\").css(\"height\",\"210px\");

3条回答
  •  -上瘾入骨i
    2021-01-05 23:16

    You cannot change $ to * because * is not a valid identifier. But you can change it to a valid one:

    (function (foobar) {
        foobar("#whatever").css(....)
    
    
    })(jQuery);
    

    Given that JavaScript identifiers are unicode, you can try fancy things like for example:

    (function (Ω) {
        Ω("#whatever").css(....)
    })(jQuery);
    

提交回复
热议问题