运行结果尺寸: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("<span>Hello World! </span>").prependTo("p");
  });
});
</script>
</head>
<body>
<button>在每个 p 元素的开头插入 span 元素</button>
<p>这是一个段落。</p>
<p>这是另一个段落。</p>
</body>
</html>
×

报个问题: