小提琴!如何运行存储在 html 中的脚本?我不想把它从功能中拿出来......
HTML:
<script type="hbrData">
function(){
var x = 22;
alert('hi');
}
</script>
JS:
var script = $('script[type="hbrData"]').text();
$('body').append(script);
script(); // Uncaught TypeError: string is not a function