473,378 Members | 1,475 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Problem with eval and continue

Hi everyone,
I'm having some weird problem with evaluating the continue statement.
Within a for loop I'm trying to evaluate a string (generated somewhere
earlier) which basically has the continue statement in it. IE6 seems to
have major problems with that as it generates an error "Can't have
'continue' outside of loop". Does anyone know why and/or have a
workaround? I haven't tried any other browser since this one is the
only one available (company policy).
I have included some code to reproduce this behaviour. The first and
second if statements of the testeval function behave as expected. The
third one however produces the mentionned error.

Thanks in advance for any help.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test Page</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;
charset=ISO-8859-1" />
<style>
div {border:1px solid red;margin-top:2px;}
</style>
<script language="JavaScript" type="text/javascript">
function testeval() {
for (var x=0; x< 6; x++) {
document.getElementById("div" + x).innerHTML = "&nbsp;";
if (x == 2) continue;
if (x == 4) eval("alert('next line will produce an error')");
if (x == 4) eval("continue");
document.getElementById("div" + x).innerText = x;
}
}
</script>
</head>
<body>
<button onclick="testeval()">Click here</button>
<div id="div0">&nbsp;</div>
<div id="div1">&nbsp;</div>
<div id="div2">&nbsp;</div>
<div id="div3">&nbsp;</div>
<div id="div4">&nbsp;</div>
<div id="div5">&nbsp;</div>
<div id="div6">&nbsp;</div>
</body>
</html>

Aug 23 '05 #1
6 2095
Lee
Roebie said:

Hi everyone,
I'm having some weird problem with evaluating the continue statement.
Within a for loop I'm trying to evaluate a string (generated somewhere
earlier) which basically has the continue statement in it. IE6 seems to
have major problems with that as it generates an error "Can't have
'continue' outside of loop".

Thanks in advance for any help. for (var x=0; x< 6; x++) {
...
if (x == 4) eval("alert('next line will produce an error')");
if (x == 4) eval("continue");


The argument to eval() is compiled and executed in an entirely
separate context, where it has no idea what loop should continue.

If you find yourself using eval(), you have usually overlooked
a simpler and more efficient solution.

Aug 23 '05 #2


Roebie wrote:

I'm having some weird problem with evaluating the continue statement.
Within a for loop I'm trying to evaluate a string (generated somewhere
earlier) which basically has the continue statement in it. IE6 seems to
have major problems with that as it generates an error "Can't have
'continue' outside of loop". Does anyone know why and/or have a
workaround? if (x == 4) eval("continue");


eval treats its string argument as a JavaScript program so it is parsed
and executed following the normal rules and a program with a single
continue
statement gives you an error, whether you have that as an argument of
eval or simply in a script block.
So your use or understanding of eval is weird, not the result you get.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Aug 23 '05 #3
Thanks Lee for your answer. You confirm what I thought was the problem
here. Indeed using eval often replaces far more better solutions, but
not in the framework I'm using it in. The code I added was only to let
others reproduce the behaviour. The real code is far more complicated.
Now that you have confirmed the way eval works, I will use a different
approach, which will still have to involve eval, and which will be a
little more complicated.

Aug 23 '05 #4
Thanks Martin for your anwser. Neither my use nor my understanding
proves to be weird. I expected both your and Lee's answer, which just
confirm my understanding of eval. I was just hoping there was I way of
getting this use of eval working, but obviously there isn't.

Aug 23 '05 #5
Lee wrote:
Roebie said:

Hi everyone,
I'm having some weird problem with evaluating the continue statement.
Within a for loop I'm trying to evaluate a string (generated somewhere
earlier) which basically has the continue statement in it. IE6 seems to
have major problems with that as it generates an error "Can't have
'continue' outside of loop".

Thanks in advance for any help.

for (var x=0; x< 6; x++) {
...
if (x == 4) eval("alert('next line will produce an error')");
if (x == 4) eval("continue");


The argument to eval() is compiled and executed in an entirely
separate context, where it has no idea what loop should continue.

If you find yourself using eval(), you have usually overlooked
a simpler and more efficient solution.


Unless of course you are using JSON in which case eval() is the best
thing since sliced bread ;)

As for the OP, this won't help in this context, as the response above
is correct: eval doesn't know from the enclosing loop. However, it is
possible to eval more than one statement at a time (instead of on two
lines as above), by using ; to seperate the statements within the
string argument to eval

HTH

Aug 23 '05 #6
Roebie wrote:
Now that you have confirmed the way eval works, I will use a different
approach, which will still have to involve eval, and which will be a
little more complicated.


What situations do you think will still have to involve eval?

You may have a real need. But most likely, if you post your code, someone
will show you how to accomplish the same task without eval at all.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Aug 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: JesusFreak | last post by:
From: us_traveller@yahoo.com (JesusFreak) Newsgroups: microsoft.public.scripting.jscript Subject: toolbar script problem NNTP-Posting-Host: 192.92.126.136 Recently, I downloaded the following...
13
by: TJS | last post by:
how can I reference an element name if it has a colon in it ? example that creates error : =========================== objForm._ctl1:password.required = 1;
8
by: werner | last post by:
Hi! I don't want to use eval() in order to parse a user-supplied formula. What alternatives do I have? PHP has no standard functionality for tokenizing or parsing expressions in this regard. ...
15
by: manstey | last post by:
Hi, I have a text file called a.txt: # comments I read it using this:
4
by: Jm lists | last post by:
Hello members, I want to know does the "eval" in python have the same features as in Perl (capture errors)? For example,in perl I can wrote: $re = eval { 1 / 0 }; Though 1/0 is a fatal...
7
by: Kamal | last post by:
Hello all, I have a very simple html table with collapsible rows and sorting capabilities. The collapsible row is hidden with css rule (display:none). When one clicks in the left of the...
0
by: Ofelia | last post by:
Hi, I'm new to this forum and to Perl language but I would like to ask for your help. I'm working in Linux and the files I need to process are in the format “file.gz”. I created a script which...
10
by: TheSaint | last post by:
Hi, It seems to be strange that give me syntax error inside an eval statement. I'm looking at it carefully but I can't see any flaw. Here it's part of the code: for nn in stn_items: value=...
1
nitindel
by: nitindel | last post by:
Hi All, Please tell me any good site for Gridview control.(not for datagrid). I am facing error in fetching the values of the Bound columns in the gridview: lease tell me how should i...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.