本文介绍了如何从文本框中删除文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 大家好, 我已经为文本框分配了一个默认的文本字符串。现在我想如果有人点击该文本框,文本框中的值将被删除。 i我使用下面的代码,但它不起作用并给我一个错误。 public void TextBox_GotFocus( object sender,RoutedEventArgs e) { TextBox tb =(TextBox)sender; tb.Text = string .Empty; tb.GotFocus - = TextBox_GotFocus; } 任何人都可以帮我解决这个问题。解决方案 请试试这个。 < input type =textplaceholder =mm / dd / yy onblur =if(this.value ==''){this.placeholder ='mm / dd / yy'; this.style.color ='#293f46';}autocomplete =offid =datepickerstyle =color: rgb(41,63,70);/> 演示网址 演示网址 Hi All,i have assigned a default string of text to a text box. now i want if someone click on that textbox, value inside the textbox gets removed.i am using below code but its not working and giving me an error.public void TextBox_GotFocus(object sender, RoutedEventArgs e){ TextBox tb = (TextBox)sender; tb.Text = string.Empty; tb.GotFocus -= TextBox_GotFocus;}can anyone please help me in resolving this issue. 解决方案 这篇关于如何从文本框中删除文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-22 23:59