<iframe id="iframe" style=" width:100%; height:500px" src="other.jsp" frameborder="0" name="myone">
<html>
<head>
<script>
$(function() {
$("#adduser1").click(function() {
alert("hiiii");
$('#iframe').attr('src', 'adduser.jsp');
});
});
</script>
</head>
<body>
<input type="button" name="AddUser" id="adduser1" value="AddUser"/>
</body>
</html>
</iframe>
ここで、同じiframeの内部イベントのトリガー時に、同じiframe(既に other.jsp でロードされている)を他のjsp adduser.jspでロードしたい 'hiiii'でアラートを出すが、jspページでロードしない