This topic has been archived. It cannot be replied.
-
枫下家园 / 电脑用户 / 请问哪位大侠知道在JAVASCRIPT里,如何得到和改写FORM里的FIELD的VALUE?谢谢。
-warhook(likeplay);
2001-10-4
(#216816@0)
-
here
-macsym(日进斗斤);
2001-10-4
(#216820@0)
-
非常感谢你的信息,不过要是有哪位大侠能三言两语就告诉答案,就太好了。明天要用,担心没有太多的时间去查,去学。哎!
-warhook(likeplay);
2001-10-4
(#216858@0)
-
<script language=\"javascript\">
<!--
得到VALUE:
var getValue;
getValue=document.formname.textfieldname.value;
设置:
document.formname.textfieldname.value=\"Testing\";
//-->
</script>
-hillxie(我要飞);
2001-10-4
(#216943@0)
-
\"是双引号
-hillxie(我要飞);
2001-10-4
(#216946@0)