最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

微信内页跳转 显示“如需浏览,请长按网址复制后使用浏览器访问”怎么解决

业界 admin 3浏览 0评论

<iframe v-if="iframeShow" id="paymentIframe" name="paymentIframe"
          style="width:100%; height:100vh; border:0; display:block;overflow: hidden;"></iframe>
  const response = 链接地址;
      iframeShow.value = true;
      // 确保 DOM 更新已完成,再设置 iframe 的 src
      nextTick(() => {
        const iframe = document.getElementById('paymentIframe');
        if (iframe) {
          iframe.src = response;
          console.log("Iframe source set to:", response);
        } else {
          console.error("Iframe element not found.");
        }

使用iframe,内嵌一个iframe,搭配v-if.v-else.就可以实现不用去浏览器中也可以显示。

<iframe v-if="iframeShow" id="paymentIframe" name="paymentIframe"
          style="width:100%; height:100vh; border:0; display:block;overflow: hidden;"></iframe>
  const response = 链接地址;
      iframeShow.value = true;
      // 确保 DOM 更新已完成,再设置 iframe 的 src
      nextTick(() => {
        const iframe = document.getElementById('paymentIframe');
        if (iframe) {
          iframe.src = response;
          console.log("Iframe source set to:", response);
        } else {
          console.error("Iframe element not found.");
        }

使用iframe,内嵌一个iframe,搭配v-if.v-else.就可以实现不用去浏览器中也可以显示。

发布评论

评论列表 (0)

  1. 暂无评论