Hi there!
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!
|
1
|
Hi there! How do I execute some Javascript that is a string?
Many thanks!
|
||
|
|
|
With eval(). See: http://www.devguru.com/Technologies/ecmascript/quickref/eval.html |
||
|
|
|
|
The But the use of Edit: annakata has a good point -- Not only is |
||||||||
|
|
|
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. |
|||
|
|
|
|
Use eval as below. Eval should be used with caution, a simple search about "eval is evil" should throw some pointers.
|
||
|
|
|
eval should do it.
|
||
|
|
|
|
But this can be dangerous if you are taking data from users, although I suppose if they crash their own browser thats their problem. |
||
|
|
|
|
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. |
||||||
|
|
|
but is there any way to actually avoid eval() to the previous example? |
||
|