当我尝试放入正文时,我遇到了链接邮件的问题。怎么了?
function mailtogametag(argument) {
window.location.href = "mailto:" + "" + "?subject=" + "" + "&body="
newPostKey + "%20Please note the dash is required!";
}
感谢。
答案 0 :(得分:2)
您在+
和"&body="
之间缺少newPostKey
符号:
..+ "?subject=" + "" + "&body=" + newPostKey + "%20Please no...
________________________________^
希望这有帮助。
答案 1 :(得分:0)
如果您支持es6(或使用babel),那么template strings可能会让您下次更容易
_source