Submit form without page reloading

后端 未结 17 2692
无人及你
无人及你 2020-11-22 00:45

I have a classifieds website, and on the page where ads are showed, I am creating a \"Send a tip to a friend\" form...

So anybody who wants can send a tip of the ad

17条回答
  •  一个人的身影
    2020-11-22 01:17

    You either use AJAX or you

    • create and append an iframe to the document
    • set the iframes name to 'foo'
    • set the forms target to 'foo'
    • submit
    • have the forms action render javascript with 'parent.notify(...)' to give feedback
    • optionally you can remove the iframe

提交回复
热议问题