search

Home  >  Q&A  >  body text

Page jump problem

I want to jump to the add page after clicking to add student information

吥离吥弃吥离吥弃2500 days ago1257

reply all(6)I'll reply

  • 段旭涛

    段旭涛2018-03-07 10:44:23

    http://www.builive.com/apps/default/main.html#form/grid

    http://www.builive.com/apps /default/main.html#form/dialog-grid

    These two pages should be able to give you some help.

    If you want to write it yourself, look up "updating data without refreshing" in the search engine, there will be a lot of documents.

    reply
    0
  • 吥离吥弃

    OK, thanks

    吥离吥弃 · 2018-03-07 10:59:25
  • 吥离吥弃

    吥离吥弃2018-03-07 10:38:24

    <a href="">After adding student information</a> the page you will be redirected to after clicking is on this page, what should I do

    reply
    0
  • 段旭涛

    A simple a tag cannot be used here. To use js The reply on this page now has an effect. The difference is that this form is relatively simple.

    段旭涛 · 2018-03-07 10:47:19
  • 段旭涛

    段旭涛2018-03-07 10:31:12

    Click edit to pop up a pop-up window where user information can be edited, and use ajax to submit user information

    reply
    0
  • 炎

    2018-03-07 09:13:38

    Add using ajax

    reply
    0
  • 吥离吥弃

    How to add it, I wrote it in html

    吥离吥弃 · 2018-03-07 10:16:07
    炎

    Import the jquery file and then look at the jquery manual to find the ajax part and add it. Get form value var customername = $(this).val(); parameters passed var data = {'customername':customername} $.ajax({ type: "POST", Execute the added method path url: "url", added data data: data, dataType:'json', success: function(msg){ The return value determines success. Refresh the page. } });

    · 2018-03-07 14:24:40
  • Cancelreply