我有一个.js文件,它是java file.jar的javascript翻译。我想在HTML页面加载后立即运行文件。可能吗? 现在,文件将使用以下代码运行
c->proc = p;
switchuvm(p);
p->state = RUNNING;
swtch(&(c->scheduler), p->context);
switchkvm();
我只想使用js文件而不是jar。
答案 0 :(得分:1)
网站加载后,运行一段代码的最简单方法是使用jQuery的ready()
函数。
像这样
$(document).ready(function()
{
//Do the whatever you need to here
});
但是请记住,页面上将需要jQuery。最简单的方法是使用CDN。只需将其粘贴到您的<head> </head>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous">
</script>
干杯,希望对您有所帮助<3