How do I execute some Javascript that is a string?
function ExecuteJavascriptString()
{
var s = "alert('hello')";
// how do I get a browser to alert('hello')?
}
Many thanks!
|
How do I execute some Javascript that is a string?
Many thanks!
| |||
feedback
|
|
With eval(). See: http://www.devguru.com/Technologies/ecmascript/quickref/eval.html | |||
|
feedback
|
|
The But the use of Edit: annakata has a good point -- Not only is | |||||||||
feedback
|
|
Use eval(). You will probably get a lot of warnings about using this safely. do NOT allow users to inject ANYTHING into eval() as it is a huge security issue. You'll also want to know that eval() has a different scope. | ||||
|
feedback
|
|
Use eval as below. Eval should be used with caution, a simple search about "eval is evil" should throw some pointers.
| |||
feedback
|
But this can be dangerous if you are taking data from users, although I suppose if they crash their own browser thats their problem. | |||
feedback
|
|
try this:
good look; | |||
|
feedback
|
Remember though, that eval is very powerful and quite unsafe. You better be confident that the script you are executing is safe and unmutable by users. | |||||||||
feedback
|
|
but is there any way to actually avoid eval() to the previous example? | |||
feedback
|