我怎样才能用jquery编写下面的程序

发布于 2024-08-10 07:10:10 字数 216 浏览 5 评论 0原文

function abc(a,b,c)
{
    alert('a :'+a+' b:'+ b);
    xyz(c);
}

function xyz(c)
{
   alert('c :' + c);
}


<a href="javascript:abc(1,2,3)" >click here to check value of abc </a>
function abc(a,b,c)
{
    alert('a :'+a+' b:'+ b);
    xyz(c);
}

function xyz(c)
{
   alert('c :' + c);
}


<a href="javascript:abc(1,2,3)" >click here to check value of abc </a>

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

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

发布评论

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

评论(3

紫竹語嫣☆ 2024-08-17 07:10:10

这是一个疯狂的猜测,但我认为您可能想将链接重命名为类似的内容

<a id='myId'>click here ...</a>

并在 jquery 中执行以下操作

$(document).ready(function(){$('#myId').click(function(){
  abc(1,2,3)})});

Jquery 是一个 javascript 框架,而不是一种编程语言。

This is a wild guess but I think you might want to rename link to something like

<a id='myId'>click here ...</a>

And do the following in jquery

$(document).ready(function(){$('#myId').click(function(){
  abc(1,2,3)})});

Jquery is a javascript framework, not a programming language.

甜味超标? 2024-08-17 07:10:10

您可以使用以下命令触发事件:

$(document).ready(function(){$('some-id').click(abc(1, 2, 3))});

function abc(a,b,c) { 
   alert('a :'+a+' b:'+ b);
   xyz(c);
}

function xyz(c) {
   alert('c :' + c);
}

...

<a id="some-id">click here to check value of abc </a>

You could fire the event using this:

$(document).ready(function(){$('some-id').click(abc(1, 2, 3))});

function abc(a,b,c) { 
   alert('a :'+a+' b:'+ b);
   xyz(c);
}

function xyz(c) {
   alert('c :' + c);
}

...

<a id="some-id">click here to check value of abc </a>
走过海棠暮 2024-08-17 07:10:10

jQuery 是一个 JavaScript 库,其目的是使一些浏览器脚本任务变得更容易。它不是 JavaScript 的替代品。不要试图将它用于所有事情。

另外,在链接中使用 onclick 比使用 javascript: 伪协议更好,并且您应该为链接提供真实的 URL,以便用户在使用 JavaScript 时进行操作关闭:

<a href="non_js_alternative.html" onclick="abc(1, 2, 3);">click here to check value of abc </a>

jQuery is a JavaScript library whose purpose is to make some browser scripting tasks easier. It is not a replacement for JavaScript. Don't try to use it for everything.

Also, using onclick is preferable to using the javascript: pseudo-protocol in a link, and you should provide a real URL for the link to take the user when they have JavaScript turned off:

<a href="non_js_alternative.html" onclick="abc(1, 2, 3);">click here to check value of abc </a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文