如何使用Meteor.js将程序化重定向到不同的URL。
我试过以下但没有用。
<div class="work">
<span>Some text</span>
<img class="portfolio-image" src="http://dummyimage.com/300.png/09f/fff" width="300" height="300" />
</div>
答案 0 :(得分:1)
你有什么应该工作。也许如果你在下面添加href:
Template.someTemplate.events({
"click #process": function(e){
e.preventDefault();
//Do some important stuff
window.location.href = "https://example.com";
}
});