所以我有一个函数可以调用3次,但是我想知道是否可以将图像用作参数。
如果答案是肯定的,那么我的下一个问题:如何将参数附加到我的<img src>
上?
代码:
function getAnchorTags(link, image) {
let anchors = ($('<a/>', {
'href': link
})).html('this is where the img etc. should come');
return anchors;
}
$(function () {
$(rowEblock().append(getEblock()).appendTo('.panel-footer'));
$('#anchorAppender').append(getAnchorTags('#'), getAnchorTags('#'), getAnchorTags('#'));
});
那让您对我所寻找的东西有什么了解?
<a src="example.com"><img src="aCertainImage"></a>
以上代码,但使用javascript(带有函数)并使用了参数。
调用getAnchorTags()
的代码:
$('#anchorAppender').append(getAnchorTags('#'), getAnchorTags('#'), getAnchorTags('#'));
答案 0 :(得分:1)
您可以传递 services.AddMvc().AddJsonOptions(opt =>
{
opt.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
});
并在src
内使用它,如:
.html()