本帖最后由 jeongee 于 2010-11-13 21:47 编辑
回复 3# ooxx
set_value()Permits you to set the value of an input form or textarea. You must supply the field name via the first parameter of the function. The second (optional) parameter allows you to set a default value for the form. Example: HTML复制代码 <input type="text" name="quantity" value="<dfn><?php echo set_value('quantity', '0'); ?></dfn>" size="50" /> 复制代码The above form will show "0" when loaded for the first time. ------------------------------------------------- 大意: 这个函数可以让你设置文本框和文本区域的值,你必须提供文本框或文本区域的name值作为这个函数的第一个参数,第二个参数是可选的用于设置默认值 用这个函数没错的 |