首页 前端知识 jquery获取父/子iframe页面的URL

jquery获取父/子iframe页面的URL

2024-05-23 20:05:29 前端知识 前端哥 601 797 我要收藏

最近因为要演示,做个临时ifame框架页面,因此子页面要根据父页面url来指定跳转。下面为ifame页面:

 1、获取子页面url:

var currentpath = window.location.pathname;
console.log(currentpath); 
输出为:/JG/TJ_JILU.aspx

2、获取父页面url:

 let currentTopHref = window.top.location.href;
 console.log(currentTopHref);
输出为:http://localhost:16796/indexjg1.aspx?lx=12&appname=123

3、获取子页面参数:

var params = location.search; 
console.log(params);
输出为:?zhcx=1&LX_CODE=Y05&STATUS_FLAG=1&year=2022  (注:从问号开始)

有了以上值,再判断下跳转即可:

//如果父框架是indexjg1.aspx,则当前子页面跳转到页面 TJ_JILU1.aspx
if (current
转载请注明出处或者链接地址:https://www.qianduange.cn//article/9161.html
标签
评论
发布的文章

jQuery初学

2024-05-29 10:05:14

Jquery中$,web开发语言

2024-05-29 10:05:25

jQuery 实现小球撞击动画

2024-05-29 10:05:04

echarts 横向柱状图

2024-05-29 10:05:01

Echarts:读取动态数据

2024-05-29 10:05:53

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!