我是 jqueries 的新手,我在调用对话框时遇到问题如果我的用户有无效的搜索查询并且没有输入开始日期。看到我有这个 jquery 代码
$(function(){
$("#dialog").dialog(function() {
$("#dialog").dialog()};
});
});
现在我在 vb 中有这些代码:
Sub Subsearch()
If txtfrom.Text <> "" And txtto.Text <> "" Then
//some codes
ElseIf txtfrom.Text <> "" And txtto.Text = Nothing Then
//some codes
ElseIf txtfrom.Text = Nothing And txtto.Text <> "" Then
//call my JQuery
Else
// some codes
End If
End Sub
现在我该怎么做?