执行 javascript: 链接 +清爽。 JS + PHP
好的,那么我如何创建此链接:
"javascript:elements.setPercentage('element1','".$value."')"
加载页面时在我的页面上执行?
OK, so how can i make this link:
"javascript:elements.setPercentage('element1','".$value."')"
execute on my page, when the page is loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以将它放在 body 标签中,如下所示:
或放在你的 javascript 文件中:
或者在 jQuery 中
你需要将它包装在一个函数中,因为你正在发送参数
you can either put it in the body tag like this:
or in your javascript file:
Or in jQuery
You need to wrap it in a function because you are sending arguments
此示例将
window.onload
事件处理程序绑定到匿名函数。但是,在本示例中,您只能拥有一个处理程序(但其中的代码数量不限)。例如,jQuery 有一个更有效的方法,称为 onDOMReady< /a> 你应该考虑一下。
This example binds the
window.onload
event handler to an anonymous function. However, with this example, you can only have one handler (but as much code within it as you want).jQuery, for example, has a more effective method called onDOMReady that you should consider.
如果您使用的是原生 JS:
...
如果您使用的是 JQuery(更好的跨浏览器支持)以下):
$(document).ready(function(){/*做任何事*/})
If you're using native JS:
<body onload="/*whatever*/">...</body>
If you're using JQuery (better cross browser support for the following):
$(document).ready(function(){/*do whatever*/})