我正在尝试切换 div 以使其可见,然后不可见,但我创建的按钮从未执行代码。我尝试将 onclick 事件放入按钮并将其链接到 js 脚本。那没有用,所以我最近的尝试包括我在所有 jquery 中编写 javascript,希望避免按钮中的 onclick 事件可以解决问题。然而它没有,所以我不知道如何解决这个问题。
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
<title>New Tab</title>
</head>
<body>
<div id="page">
<center><iframe name="web" src="http://www.bing.com/" height="70%" width="70%">Please download a browser that supports iframes.</iframe></center>
<center>
<button type="submit" onclick="web.history.back();">Back</button>
<button id="hide_btn">Hide</button>
<button type="submit" onclick="web.history.forward();">Forward</button>
</center>
</div>
<script type="text/javascript">
$('#hide_btn').click(function () {
$('#page').toggle();
});
</script>
</body>
</html>