此方法通常用于设置表单字段的值,index表示当前元素的索引,value表示当前元素的值
1 <!DOCTYPE html> 2 3 <html> 4 <head> 5 <meta content="width=device-width" /> 6 <script src="~/Scripts/jquery-1.10.2.js"></script> 7 <title>JQuery函数</title> 8 <script> 9 $(document).ready(function () { 10 $("#btnJquery").click(function () { 11 var valInput = $("#idInput").val(function (index,value) { 12 return value.toUpperCase().toString(); 13 }) 14 }) 15 }) 16 </script> 17 18 </head> 19 <body> 20 <input type="text"/> 21 <input type="button" value="Jquery" /> 22 </body> 23 </html> View Code测试结果:
3 参考文献
【01】
【02】
4 版权
感谢您的阅读,若有不足之处,欢迎指教,共同学习、共同进步。 博主网址:。 极少部分文章利用读书、参考、引用、抄袭、复制和粘贴等多种方式整合而成的,大部分为原创。 如您喜欢,麻烦推荐一下;如您有新想法,欢迎提出,邮箱:2016177728@qq.com。 可以转载该博客,但必须著名博客来源。谢谢您的访问.
这些内容可能对你也有帮助更多可查看Javascript教程列表页。