我怎样才能将这个语句完全转换为Jquery
if(document.getElementById('txt1') != null){
$("#txt1").val(document.getElementById('txt1').value.toUpperCase());
}
我怎样才能将这个语句完全转换为Jquery
if(document.getElementById('txt1') != null){
$("#txt1").val(document.getElementById('txt1').value.toUpperCase());
}
How can i convert this statement to Jquery Completely
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将函数与
.val()
一起使用,如下所示:..如果它找不到
id="txt1"
元素,它就不会在任何元素上运行,这就是 jQuery 链的工作方式,所以你的if()
检查也得到处理。You can use a function with
.val()
like this:...and it it doesn't find an
id="txt1"
element it just won't run on any, that's the way jQuery chains work, so yourif()
check is taken care of as well.或者像这样
or like this