由于某种原因,此代码块将不起作用。它拒绝将元标记放入头部。有任何想法吗 ?
<html>
<head>
<title>hello world</title>
</head>
<body>
HELLO WORLD!
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function(){
$("head").append("<meta blabla>");
});
</script>
</body>
</html>