我有一个example.html
文件:
<span>
{{test}}
</span>
还有一个main.js
文件:
$( "button#test" ).click(function(event) {
var html = '/example.html';
//Replaceing {{test}} in example.html with 'Hello, World!' string
var insertProperty = function (string, propName, propValue) {
var propToReplace = "{{" + propName + "}}";
string = string
.replace(new RegExp(propToReplace, "g"), propValue);
return string;
}
var replacedhtml = insertProperty(html,"test", 'Hello, World!');
return console.log(replacedhtml);
});
我目前在日志中得到的内容:
/example.html
我的期望:
<span>
Hello, World!
</span>
并且应该有一种比我的insertProperty
函数更优雅的插入属性的方法。