<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 的内部事件时与其他 jsp adduser.jsp 加载相同的 iframe(它已经加载了 other.jsp),它的警报使用“hiiii”但不加载 jsp 页面