假设我有这个页面“index.php”,其中我有这个链接调用一个弹出框:
<a href="#" id="signinlink">Sign in</a>
jquery函数是:
<script type="text/javascript" charset="utf-8">
jQuery(function() {
function launch() {
jQuery('#sign_up').lightbox_me({centered: true, onLoad: function() { jQuery('#sign_up').find('input:first').focus()}});
}
jQuery('#signinlink').click(function(e) {
jQuery("#sign_up").lightbox_me({centered: true, onLoad: function() {
jQuery("#sign_up").find("input:first").focus();
}
});
});
</script>
如何从 iframe 调用这个函数?
(* iframe 是从父页面“index.php”调用的)我想我必须添加一个链接
window.parent.callme();
但是怎么做?请帮忙!