how to define variable in jquery

后端 未结 8 1334
梦谈多话
梦谈多话 2021-01-31 09:09

I would like to know how to declare a variable in jQuery

The code I am currently using is

$.name = \'anirudha\';
alert($.name);

That co

8条回答
  •  忘了有多久
    2021-01-31 09:22

    Remember jQuery is a JavaScript library, i.e. like an extension. That means you can use both jQuery and JavaScript in the same function (restrictions apply).

    You declare/create variables in the same way as in Javascript: var example;

    However, you can use jQuery for assigning values to variables:

    var example = $("#unique_product_code").html();
    

    Instead of pure JavaScript:

    var example = document.getElementById("unique_product_code").innerHTML;
    

提交回复
热议问题