是否可以添加一些会在脚本标签内生成的脚本?
我有一个 jquery 脚本女巫添加<script type="text/javascript"></script>
到我的脑海中,但实际上我希望有一个脚本可以在里面生成一些东西。例如:
<script type="text/javascript">
$(document).ready(function()
{
//some script
});
</script>
目前情况:http: //jsfiddle.net/dzorz/rjxEJ/
脚本:
// Use any event to append the code
$(document).ready(function()
{
var s = document.createElement("script");
s.type = "text/javascript";
// Use any selector
$("head").append(s);
});