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

forms - Hyphen in div id causing javascript error - Stack Overflow

programmeradmin1浏览0评论

I'm having an issue with javascript whereby i am performing the following to close a popup window and update a field in the parent window with the required value. Code looks something like this:

<script language="javascript" type="text/javascript">
    var FieldID = document.form.field22-1.value;
    self.parent.opener.document.+FieldID = 'some text';
    window.top.window.close();
</script>

However I am getting the following error:

Error: missing ; before statement

I have a funny feeling the javascript is interpreting the field id (field22-1) as having a subtraction in it. Which I guess would make sense. Any ideas/help would be ridiculously appreciated, really don't want to have to go back in and change the - in the code!

Thanks in advance!

I'm having an issue with javascript whereby i am performing the following to close a popup window and update a field in the parent window with the required value. Code looks something like this:

<script language="javascript" type="text/javascript">
    var FieldID = document.form.field22-1.value;
    self.parent.opener.document.+FieldID = 'some text';
    window.top.window.close();
</script>

However I am getting the following error:

Error: missing ; before statement

I have a funny feeling the javascript is interpreting the field id (field22-1) as having a subtraction in it. Which I guess would make sense. Any ideas/help would be ridiculously appreciated, really don't want to have to go back in and change the - in the code!

Thanks in advance!

Share asked Jan 19, 2011 at 18:06 richrich 1,2251 gold badge20 silver badges36 bronze badges 1
  • Never try to get elements directly. It just causes problems (as you can see) – Dustin Davis Commented Jan 19, 2011 at 18:09
Add a ment  | 

4 Answers 4

Reset to default 6

Use document.getElementById('field22-1').value instead.

You might also need to fix this:

self.parent.opener.document[FieldID] = 'some text';

In JavaScript, any property of any object can be accessed either via dot notation, e.g. foo.bar, or bracket notation, e.g. foo["bar"]. The latter is necessary when your property is not a legal identifier (as in your case):

var FieldID = document.form["field22-1"].value;

Alternatively, if this is an actual id attribute, you should use:

var FieldID = document.getElementById('field22-1').value;

You could also use document.form['field22-1'].value.

You can use document.getElementById('field22-1').value

发布评论

评论列表(0)

  1. 暂无评论