我正在尝试设置一个页面,当有人点击“获取横幅规范”时,应该会出现横幅广告。框。我已经走到了这一步,但我无法弄清楚如何调用另一个URL来获得横幅。有人可以告诉我这是怎么做到的?
网站:
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=windows-1252" http-equiv="content- type">
<title>testMaria</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"
type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
</head>
<body>
<h1>Maria Site</h1>
<h2>Do you wanna se a banner?</h2>
<button id="banner">Get Banner Specs</button>
<div id="specs"> </div>
<script type="text/javascript">
$("#banner").click(function(){
$("#specs").append("Banner <b>Specs</b>!");
});
</script>
</body>
</html>