このコードを使用した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>
しかし、それは機能していません。私に何ができる??