Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人知道隐藏 iframe 的 src 的巧妙方法?
<iframe src= "<?php $values = get_post_custom_values("my-custom-field"); echo $values[0]; ?>" width="100%" height="500px" frameborder="0"> </iframe>
正如人们在评论中所说,浏览器需要的东西不能被隐藏。
我唯一能想到的就是使用 HTML 实体:
<iframe src= "<?php echo htmlentities($myurl); ?>" width="100%" height="500px" frameborder="0"> </iframe>
抱歉,如果有更好的方法编码到实际的浏览器中,那么它是可能的。不过,这可能是您最接近的。