最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Does a JavaScript variable not declared with var become global? - Stack Overflow

programmeradmin2浏览0评论

I have the following code in one file:

function refreshGridSuccess(responseText, entity) {

    oTable = $('#dataTable').dataTable({
        "sScrollX": "100%",

In another file I have:

$('#detailData')
        .on('click', '.sort-up', function (event) {
            event.preventDefault();
            var column = $(this).closest('th'),
                columnIndex = column.parent().children().index(column.get(0));
            oTable.fnSort([[columnIndex, 'asc']]);
            return false;
        })

I have no definition for oTable except here. The scripts seem to work so does that mean that oTable was somehow made into a global variable?

Now I am trying to start using Typescript and it will not accept Otable without it being declared. Is there a way I can declare oTable as an object or do I have to declare it as an object to be the same type as is returned by $('#dataTable').dataTable({}) ?

I have the following code in one file:

function refreshGridSuccess(responseText, entity) {

    oTable = $('#dataTable').dataTable({
        "sScrollX": "100%",

In another file I have:

$('#detailData')
        .on('click', '.sort-up', function (event) {
            event.preventDefault();
            var column = $(this).closest('th'),
                columnIndex = column.parent().children().index(column.get(0));
            oTable.fnSort([[columnIndex, 'asc']]);
            return false;
        })

I have no definition for oTable except here. The scripts seem to work so does that mean that oTable was somehow made into a global variable?

Now I am trying to start using Typescript and it will not accept Otable without it being declared. Is there a way I can declare oTable as an object or do I have to declare it as an object to be the same type as is returned by $('#dataTable').dataTable({}) ?

Share Improve this question edited Nov 12, 2012 at 17:27 Fenton 251k73 gold badges401 silver badges409 bronze badges asked Nov 11, 2012 at 7:18 Samantha J T StarSamantha J T Star 32.9k89 gold badges257 silver badges441 bronze badges 1
  • To fix this, you need to explicitly put var oTable in your TypeScript. In your case, somewhere both usages can access. – Fenton Commented Nov 11, 2012 at 10:50
Add a ment  | 

3 Answers 3

Reset to default 3

If you're in the global scope then there's no difference. If you're in a function then "var" will create a local variable, "no var" will look up the scope chain until it finds the variable or hits the global scope (at which point it will create it).

Found here: What is the purpose of the var keyword and when to use it (or omit it)?

Yes, a variable not declared with var bees global. When used outside of a function's scope it is not necessarily required, however, using a globally defined variable which was defined in a function results in unpredictable results.

"Failure to declare the variable in these cases will very likely lead to unexpected results. For that reason, in ECMAScript 5 strict mode, assigning a value an undeclared variable inside a function throws an error." - https://developer.mozilla/en-US/docs/JavaScript/Reference/Statements/var

You are correct. Variable without a var declaration is treated as global. If you are in a browser, that scope is window

Also note that Javascript variables are function-scoped. Meaning if you have a code like this:

function test()
{
   for (var key in someObject)
   {
      var foo = 'bar';
   }
}

It is equivalent to this:

function test()
{
   var foo, key;
   for (key in someObject)
   {
      foo = 'bar';
   }
}

It doesn't matter which block the var declaration is placed in, the actual declaration happens at the beginning of the function. This is also called variable hoisting if you want to google it.

Now about Typescript, I haven't had a chance to play with it. But I assume you can still do var oTable; right before you use the variable?

发布评论

评论列表(0)

  1. 暂无评论