Javascript / HTML 语法格式错误
我有一行代码正在混合 JQuery / HTML,但我认为我在 周围有一个语法错误有人能发现这个问题吗?
这是代码:
$("<div><a href="http://google.com>""+today+"</a></div>")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
替代:
用相同类型的引号括起来的引号需要用反斜杠转义。
您还需要引号来正确包裹 href 值。
Try this:
Alternate:
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.
您的前导双引号将取消您的 href= 双引号。
Your leading double quote is cancelling out your href= double quote.