0

私はこのビューを持つ ASP.NET MVC4 アプリケーションを持っています:

@{
    Layout = "~/Views/Shared/Template.cshtml";
}
@section logout {

    <a href='@Url.Action("Logout", "Begin")' style="margin-left: 91.3%"><img src="~/Content/images/images.jpg" style="width:37px; height:37px" /></a>
    }
<html>
<head>
    <script>
        function mailJob(code) {
            window.open('mailto:example@gmail.com');
        }
    </script>

    </head>
    <body>

<form action="/Pages/Index" method="post" style="margin-left:20%">
    <div class ="CenterTitle">
        <h1 style="color:rgb(73, 140, 212)">Norm impact : Registre des réclamations clients</h1>
    </div>
    <div class="noPrint">
         <input type="hidden" value ="1" name="Pages"/>
                <button type="submit" value="Submit" name="btnPage1"><img src="~/Content/images/OK.png" onclick="mailJob('Sample');"/></button>
                <button type="button" value="exportToPDF" onclick="window.print()" name="btnPage1"style="margin-left:55%"><img src="~/Content/images/print.png" /></button>
    </div>

    ...

    <div class="noPrint">
        <button type="submit" value="Page2" name="btnPage1" style="margin-left:75%"><img src="~/Content/images/next.png" /></button>
    </div>
</form>

</body></html>

mailtoメーリング ソフトが起動せず、この URL の新しいウィンドウが表示されるため、問題が発生しますmailto:example@gmail.com

では、どうすればこの問題を解決できますか?

4

1 に答える 1

1

代わりにこれを試してください:

function mailJob(code) {
    window.location.href = 'mailto:example@gmail.com';
}
于 2013-08-28T11:44:43.473 に答える