关于iframe嵌套页面传值
2.在嵌套的js文件里面直接location.search就可以拿到通过url拿过来的值,在发送的url处写个?进行判断到底传过来的是什么值。1.我这边为vue的页面,直接在static里面将页面放进去,通过url进行传值。...
·
1.我这边为vue的页面,直接在static里面将页面放进去,通过url进行传值
<iframe id="theirs2" :src="'static/rtc2.html?'+item.ip" scrolling="no" frameborder="0">
</iframe>
2.在嵌套的js文件里面直接location.search就可以拿到通过url拿过来的值,在发送的url处写个?进行判断到底传过来的是什么值
var paras = location.search.split("?")
console.log(paras[1]);
更多推荐
已为社区贡献1条内容
所有评论(0)