更换后将焦点设置为div

时间:2016-08-01 17:34:34

标签: jquery html

我希望在location.replace调用函数之后将焦点转移到div(#tab2),但我正在努力让它工作。

function deleteItem(parent) {
        window.location.replace(pageContext +
                '/delete/item/' +
                $('#itemTabs').tabs( "option", "active" ) + '/' +
                $('#accordion2').accordion( "option", "active" ) + '/' +
                parent.find('.a-itemId').val());
    }

此功能删除项目,一旦完成,我需要将页面重定向到特定的div而不是刷新整个页面。什么是让它发挥作用的最佳方法?

1 个答案:

答案 0 :(得分:1)

尝试使用ajax。 jQuery有一个非常容易理解的ajax实现。请访问this link了解详情。

你可以这样使用它:

function foo(float x, boolean b) is integer
declare
  integer localVar;
begin
  ... do junk
  return localVar;
end