English 中文(简体)
为什么我的职能没有发挥作用?
原标题:Why is my function not working?
  • 时间:2011-03-28 18:39:51
  •  标签:
  • javascript

既然我回答我的其他问题,这项职能就没有发挥作用。 什么错误?

Weird Javacast statement, what does it mean?

如何在javascript中处理点击事件?

function myFunc() {
    return
    {
        obj = this;
    };
}
最佳回答

由于贾瓦语是自治的半殖民地,你的职能没有发挥。

页: 1

return;
{
    obj: this;
};

您需要将<代码>{放在与<代码>return相同的行文上:

return{
    obj: this;
};

此外,物体需要<代码>{名称:价值}。

问题回答

1. 制造物体的辛yn是:

{ foo: bar }

不适用

{ foo = bar }

此外,在 Java文中,新行可终止声明。 在<代码>return之后添加一条新线 您正在返回<代码>un specified,物体字面代码从未达到。 JSLint 能够处理这类问题。

这是由于半殖民注射。

This:

return
  { myProperty: "hello world" };

与此类似:

<< return statement >>
<< pointless object literal expression >>

∗∗∗∗

<< return statement with return value expression >>

为了归还物体价值,你的法典必须考虑这一点:

return {
  myProperty: "hello world"
};

改为{,, 同一行程,作为return





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签