我写了下面的代码来检查我的文本框中的空白值,但是它生成编译错误,请给我解决方案。
我在javascript中的代码:
function checkTextboxNotFilled(txtbox) {
var txtb = document.getElementById("<%= " + txtbox + ".ClientID %>");
if (GetFormattedString(txtb.value) == "") {
return true ;
}
else {
return false ;
}
}
错误:
'string' does not contain a definition for 'ClientID' and no extension method 'ClientID' accepting a first argument of type 'string' could be found (are you missing a using directive or an assembly reference?)
我这样称呼:checkTextboxNotFilled(“MytextboxName”)
答案 0 :(得分:3)
这可能对您有所帮助。
function checkTextboxNotFilled(txtboxid) {
var txtb = document.getElementById(txtboxid);
if (GetFormattedString(txtb.value) == "") {
return true ;
}
else {
return false ;
}
}
并致电:checkTextboxNotFilled("<%= Mytextbox.ClientID %>");