Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更正这种格式,但我不知道如何修复它。我只想将“标题”设置为 img 标签作为我的 html 输出中的文件名。
这是代码,所以请耐心等待这个输出。
var imgName = $bxNextImage.attr("title"); $title.text( '<img src='imgName' width='' height='' alt=''>' );
感谢可以帮助我的人..
您可以同时使用 ' 和 " 引号:
var imgName = $bxNextImage.attr("title"); $title.html( '<img src="' + imgName + '" width="" height="" alt=""/>' );
我从更改为.text(),.html()因为.text()不会渲染图像对象,而只是纯文本。
.text()
.html()