js中form表单属性介绍及阻止默认跳转和获取后端返回数据的方法

2019-07-18  本文已影响0人  shenjianbo

js中form表单属性介绍及阻止默认跳转和获取后端返回数据的方法

  <form action="url" target="stop"></form>
  <iframe name="stop" style="display:none;"></iframe>
  <form action="url" target="stop"></form>
  <iframe name="stop" style="display:none;" id="formData"></iframe>
document.queryselect('#formData').onload = function() {
  let data = JSON.parse(this.contentWindow.document.body.innerText
}
上一篇下一篇

猜你喜欢

热点阅读