0
I have created 3 tabs in my home.jsp. 

我想要的是单击它加载另一个jsp的选项卡(它也有脚本)。我用过

   title: 'Home'  
            autoLoad: {
                url: 'UserProfile', 
                script:true
            }
        }

这段代码。但它只包含简单的文本。脚本部分未加载。如何正确加载脚本?

4

2 回答 2

0
 title: 'Home'  
            autoLoad: {
                url: 'UserProfile.jsp', 
                scripts:true
            }
        }

它的“脚本”而不是“脚本”

于 2013-10-18T11:24:00.583 回答
0

尝试这个

tabObj.update(responseText)

responseText: call a ajax call to "UserProfile"
于 2013-10-18T10:57:39.457 回答