Is it possible to add an anchor to a FORM post/get?

后端 未结 3 1154
北荒
北荒 2021-01-19 18:08

I noticed that in Firefox I can add a #MyAnchor tag to the action attribute like...

3条回答
  •  没有蜡笔的小新
    2021-01-19 18:16

    I've used this to retain the fragment across postbacks:

        var f = document.forms[0];
        var index = f.action.indexOf("#");
        if(index>0)
            f.action = f.action.substr(0,index) + "#" + tabId;
        else
            f.action += "#" + tabId;
    

提交回复
热议问题