Onclick 扩展输入宽度
我有一个以给定宽度扩展输入的函数,我的问题是如何修改该函数,以便仅当我的输入的值和输入类型不同于 type="submit" 时才执行。我不想为每个输入使用类或 id,因为我的应用程序上有很多输入。
这是一个例子: http://jsfiddle.net/DCjYA/81/
I have a function that expand input with a given width, my problem is how to modify that function in order to be executed only when I have a input with value and input type different than type="submit". I don't want to use classes or ids for each input because I have a lot of input on my app.
Here is an example:
http://jsfiddle.net/DCjYA/81/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经更新了代码 http://jsfiddle.net/DCjYA/84/ 需要使用过滤器 $ ('输入[类型!=提交]')
i have updated the code http://jsfiddle.net/DCjYA/84/ need to use filter $('input[type!=submit]')
不确定这是否是您想要的,但是,您不能使用 jquery val() 函数吗?你的例子修改了..
Not sure this is what you want but, Can you not use the jquery val() function? Your example modified..