私は Jquery で iframe の構築を実験しようとしていましたが、このコードは簡単だと思いますが、うまくいきません..
jQuery(document).ready(function() {
$("#opposition a").click(function(e) {
var first_id = $(this).attr('id');
var second_id = $("h1").attr('id');
$("#opposition img").mouseover(function() {
$(this).css('border-width','5px');
});
$("#opposition img").mouseout(function() {
$(this).css('border-width','2px');
});
$.get("compare_proc.php",{
id:first_id,
id2:second_id
});
$("#frame").attr("src", "http://www.google.com/");
e.preventDefault();
});
});
HTML:
<div id="mydiv"><iframe id="frame" src="" width="100%" height="300">
</iframe></div>
<button id="button">Load</button>