运行 jquery 字符串命令

发布于 2024-12-05 16:37:17 字数 121 浏览 1 评论 0原文

我有一个包含 jquery 命令的字符串 我怎样才能执行这个字符串?

var myCommand = "$('#update').html('hello world!');";

I have a string that contains a jquery command
How can I execute this string?

var myCommand = "$('#update').html('hello world!');";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

黑白记忆 2024-12-12 16:37:17

你不应该尝试从字符串执行命令,如果你需要重用它们,你应该使用一个函数:

var myCommand = function(){
    $('#update').html('hello world!');
}

然后调用它,

myCommand();

否则你必须使用 eval() 但这不是最佳实践。

或者您可以使用 globalEval() ,它更好,因为它不使用 eval()

You should not try to execute command from string, if you need to reuse them you should use a function:

var myCommand = function(){
    $('#update').html('hello world!');
}

and then call it

myCommand();

Otherwise you must use eval() but it's not a best practice.

Or you could use globalEval() which is better since it doesn't use eval()

一个人的夜不怕黑 2024-12-12 16:37:17
var myCommand = function(){
    $('#update').html('hello world!');
}
$(function()
{ myCommand();
});
var myCommand = function(){
    $('#update').html('hello world!');
}
$(function()
{ myCommand();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文