本文介绍了如何运行放在文本框中的Javascript代码(在HTML5中)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的html页面上有一个文本框,我想运行人们把它放在文本框中的javascript代码。我怎么能这样做?
I have a textbox on my html page, I'd like to run the javascript code that people put it the textbox. How can I do that?
推荐答案
你可以使用 document.getElementsByName
<input name="textbox" type="text" />
<input name="buttonExecute" onclick="execute(document.getElementsByName('textbox')[0].value)" type="button" value="Execute" />
我找到类似的东西
这篇关于如何运行放在文本框中的Javascript代码(在HTML5中)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!