Javascript / HTML 语法格式错误

发布于 2024-11-08 03:15:38 字数 219 浏览 0 评论 0 原文

我有一行代码正在混合 JQuery / HTML,但我认为我在 周围有一个语法错误有人能发现这个问题吗?

这是代码:

$("<div><a href="http://google.com>""+today+"</a></div>")

I have one line of code that I'm mixing JQuery / HTML but I think I have a syntax error somewhere around the <a href Can anyone spot the issue please?

Here is the code:

$("<div><a href="http://google.com>""+today+"</a></div>")

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

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

发布评论

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

评论(2

无远思近则忧 2024-11-15 03:15:38

试试这个:

$('<div><a href="http://google.com">' + today + '</a></div>');

替代:

$("<div><a href=\"http://google.com\">" + today + "</a></div>");

用相同类型的引号括起来的引号需要用反斜杠转义。

您还需要引号来正确包裹 href 值。

Try this:

$('<div><a href="http://google.com">' + today + '</a></div>');

Alternate:

$("<div><a href=\"http://google.com\">" + today + "</a></div>");

Quotes wrapped in quotes of the same type need to be escaped with a backslash.

You also needed the quotes to wrap the href value correctly.

动听の歌 2024-11-15 03:15:38

您的前导双引号将取消您的 href= 双引号。

$('<div><a href="link">' + today + '</a></div>');

Your leading double quote is cancelling out your href= double quote.

$('<div><a href="link">' + today + '</a></div>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文