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,其中有一个按钮,当有人点击它时,它会执行一个操作,比如转发到另一个页面或回显消息。我不关心代码是否是 java、php、html 等,只要它可以工作。我擅长编写某些东西,但这不是其中之一,请帮帮我。
更新: iframe 是: iframe src="http://ipget.tk" /iframe
当点击它时,我希望它转到 google.com,iframe 将出现在 scazioco.com 上的测试页面上
使用 Jquery,您可以将事件绑定到您的 IFrame :
$('#iframe_id').bind('click', function(event) { window.location = http://www.google.com });
将 #iframe_id 替换为实际 iframe 的 ID