index.html 与此代码
<iframe src="other.html" width="100%" height="600px"></iframe>
<input type="button" id="btnOutside" value="Click me"/>
在 other.html 我有这个代码:
<input type="button" id="btnInside" value="Other Click"/>
<script type="text/javascript">
$(document).ready(function() {
$("#btnInside").click(function () {
alert('inside');
});
});
</script>
我试图让外部按钮在 index.html 中像这样触发内部按钮
<script type="text/javascript">
$(document).ready(function() {
$("#btnOutside").click(function () {
$("#btnInside").click();
});
});
</script>
但这是行不通的。我能做些什么??