我在一个部分有两个文本框,“名字”和“姓氏”,我想在名为“详细信息”的第三个文本框中显示“名字”和“姓氏”的组合。但如果组合包含(名字和姓氏)“Kiran”,那么它不应该显示。我怎么能这样做?
答案 0 :(得分:1)
假设您为控件指定了名称function regular()
{
function regular_closure()
{
}
(function () // this is anonymous
{
})(); // call the anonymous function.. which is also a closure
regular_closure(); // call the function
}
,first-name
和last-name
,您可以为details
控件创建一个计算值:
details