How to jump to the page and show an tab by URL?

I am using now

URL:"http://myweb/helloworld/app/index.html?jumpUrl=page/my-question.html&jumpTab="+jumpTab;

JavaScript code:

        var jumpUrl = page.query.jumpUrl;
    	var jumpTab = page.query.jumpTab;
    	if(jumpTab){
    		mainView.router.load({
				url: jumpUrl,
				query:{'jumpTab':jumpTab}
			});
    	}

This is too inefficient.On the normal website,we use URL to jump to page, and use anchor to link to tab.I think it is more convenient.Can I achieve similar results?

PS:I am a novice,This is my first time to create topic.thanks for your help!