执行 javascript: 链接 +清爽。 JS + PHP

发布于 2024-11-02 18:40:47 字数 131 浏览 1 评论 0原文

好的,那么我如何创建此链接:

"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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清君侧 2024-11-09 18:40:47

你可以将它放在 body 标签中,如下所示:

<body onload="function(){elements.setPercentage('element1','".$value."')}"

或放在你的 javascript 文件中:

window.onload = function(){elements.setPercentage('element1','".$value."')};

或者在 jQuery 中

$(document).ready(function(){elements.setPercentage('element1','".$value."')});

你需要将它包装在一个函数中,因为你正在发送参数

you can either put it in the body tag like this:

<body onload="function(){elements.setPercentage('element1','".$value."')}"

or in your javascript file:

window.onload = function(){elements.setPercentage('element1','".$value."')};

Or in jQuery

$(document).ready(function(){elements.setPercentage('element1','".$value."')});

You need to wrap it in a function because you are sending arguments

挥剑断情 2024-11-09 18:40:47

此示例将 window.onload 事件处理程序绑定到匿名函数。但是,在本示例中,您只能拥有一个处理程序(但其中的代码数量不限)。

例如,jQuery 有一个更有效的方法,称为 onDOMReady< /a> 你应该考虑一下。

<head>
... other stuff
<script>
window.onload = function(){
    if (typeof elements == 'object' and typeof elements.setPercentage == 'function') {
        elements.setPercentage('element1','<?php echo $value; ?>');
    }
}
</script>
... other stuff
</head>

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.

<head>
... other stuff
<script>
window.onload = function(){
    if (typeof elements == 'object' and typeof elements.setPercentage == 'function') {
        elements.setPercentage('element1','<?php echo $value; ?>');
    }
}
</script>
... other stuff
</head>
深陷 2024-11-09 18:40:47

如果您使用的是原生 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*/})

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文