我只是一个简单的问题。
我想为文本框分配一个值,但不像Java脚本函数那样为字符串赋值。
我将举一个简单的例子:
<input type="text" value="exam">// here i assign the value as a string .
<input type="text" value=functionx() > // functionx is a java script function that
will assign a value to the text box.
<script > function functionx(){return 'exam';}</script>
现在在这个简单的例子之后,我的问题是:如何使用java脚本函数为文本框分配值?