您现在的位置:首页 >> 前端 >> 内容

shopex 4.85 后台发货按钮不能解决的办法

时间:2011/10/15 15:12:38 点击:

  核心提示: 不管换什么浏览器 发货按钮就是不能按下去。 经过排查,chrome报的错是 An invalid form control with name=other_name is not focusable...

不管换什么浏览器 发货按钮就是不能按下去。
经过排查,chrome报的错是 An invalid form control with name='other_name' is not focusable.
这说明js在检查一个控件的时候除了问题。
在core\admin\view\order\orderconsign.html页面的第31行:
 
<span id='otherinput' style="display:none"><input type="text" class='_x_ipt' vtype='text' required='true' size='10' name='other_name'></span> 

 

这句代码把一个必须输入的字段隐藏了。
我也不知道这个字段干嘛的。这句话变成:
 
<span id='otherinput' style="display:none"><input type="text" class='_x_ipt' vtype='text' required='true' size='10' name='other_name' value='null' /></span> 

 

 

至少可以用了。。。。

 摘自:灵小句 不爱写程序

Tags:SH HO OP PE 
作者:网络 来源:不详