<script>
function OnInit(s, e) {
var input = s.GetInputElement();
var MyValue = TextBox.GetValue(); // Question is here
ASPxClientUtils.AttachEventToElement(input, "click", function (event) {
s.SetText("");
});
}
function onLostFocus(s, e) {
if (s.GetText() == '')
s.SetSelectedIndex(0);
}
</script>
我想在 onLostFocus 函数中使用“MyValue”。
如何在 onLostFocus 函数中获取“MyValue”?
任何帮助将不胜感激。