列表项的链接不起作用
我想在此列表项上创建一个链接。为什么这个方法不起作用?
#jQuery(function(){
var theList = jQuery('#someList');
var content = jQuery('<a href="Settings"><li id="content'+i+'"></li><a/>'
theList.append(content);
I want to create a link on this list item. Why is this method not working?
#jQuery(function(){
var theList = jQuery('#someList');
var content = jQuery('<a href="Settings"><li id="content'+i+'"></li><a/>'
theList.append(content);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要刷新列表:
更新:您的代码
you need to refresh the list:
UPDATE: Your Code
您的代码似乎缺少括号,试试这个?
You seem to be missing parentheses from your code, try this?