我正在尝试通过单击 html 文件中的图像发送电子邮件,但它在文件中不起作用,我正在使用单个图像在单独的文件中执行相同的操作,然后它正在工作。这是我在 html 中调用代码的地方
<div class="root_panel_img"><img src="images/main_button.png" id="commandEmail1" /></div>
这是javascript文件
我正在尝试通过单击 html 文件中的图像发送电子邮件,但它在文件中不起作用,我正在使用单个图像在单独的文件中执行相同的操作,然后它正在工作。这是我在 html 中调用代码的地方
<div class="root_panel_img"><img src="images/main_button.png" id="commandEmail1" /></div>
这是javascript文件
$(document).ready(function(){
$("#commandEmail1").click(function() {
......
......
"You can test this if it is working or not by putting an alert("OK") message."
});
});
所以根据提供的代码,以下不起作用?
$("#commandEmail2").click(function() {
presenter.command("emailSend",{
"toEmail": "debug@orchard.net.au",
"toName": "Debug",
"subject": "Presenter Library Test",
"body": "Dual Attachment",
"bodyHtml": "<h1>Dual Attachment</h1>",
"attachments": ["/pdf/ip6.pdf","/pdf/docs.pdf"]
}, status);
return false;
});
这行得通吗?
$("#commandEmail2").click(function() {
alert("this works");
return false;
});
如果是这样,那么presenter.command 中的某些内容会失败,那就是您尚未发布的代码。