Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

AJAX tabs with inputs and forms .Net Core

Im new to AJAX and .Net Core. I have a tab page in my view (this is supposed to be a ForgotMyPassword Page)

<div id="tab1">
        <input id="UserKeyInput" type="text" autofocus placeholder="UserKey">
        <button id="btnn">Next</button>

</div>
<div id="tab2"> <!-IF VALIDATION=TRUE SWITCH TO THIS TAB-->
        <input id="UserKeyInput" type="text" autofocus placeholder="newpassword">
        <button id="btnn">done</button>

</div>

in JS i have

    <script>
    $(function () {
    $("#btnn").click(function () {
        alert("ss");
        var UserKey;
        UserKey = $("#UserKeyInput").val();
        $.ajax({
            type: "POST",
            url: '@Url.Action("ValidateUser")',
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            success: function () {
            },
            error: function () {
            }
        });
        return false;
    });
});
</script>

How could I have AJAX change the tab if the validation was successful? Should I have one single function that switches tabs and performs actions or should i have a function for each tab? the other thing is what would happen if the user refreshed the page after ValidateUser is done and we are on the second tab page?(would it show the tab1 or tab2)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...