0

单击时,我需要在正文中添加一个类。

我知道是:$("body").addClass.("ex4Trigger");但它不起作用。

我希望当我点击身体时,它会做类似的事情=>

<a href="/link/open" class="ex4Trigger">....</a>

我不知道他是否尽可能地这样做:

var sasClickUrl = "/link/open";
var sasClickTarget = "_self";

document.write('<style>');
document.write('body {');
document.write('background-image: url("/gallery/background/image.jpg")!important;');
document.write('background-repeat: repeat-y;');
if ('top' == 'top with offset') {
    document.write('background-position:center 0px;');
} else {
    document.write('background-position:center top;');
}
if ('FFFFFF' != "") document.write('background-color: #FFFFFF;');
document.write('padding: 0px 0 0 0;');
if (0) document.write('background-attachment: inherit;');
if (sasClickUrl != "") document.write('cursor: pointer;');
document.write('}');
if (sasClickUrl != "" && !0) document.write('body > *{cursor: default;}');
document.write('</style>');
if (sasClickUrl != "") {
    function OpenWin(page) {
        if (sasClickTarget == "_parent") window.open(page);
        else document.location = page;

    }
    sasBackClick2213491 = function (e) {
        var bglink = sasClickUrl;
        EE = e ? e : event;
        if (!EE) return;
        var tg = EE.target ? EE.target : EE.srcElement;
        if ((!tg || tg.tagName != "BODY") && tg.parentNode.tagName != "BODY") return;
        var BackLink = OpenWin("" + bglink);
    };
    document.onclick = sasBackClick2213491;
}
document.write('\r\n');
document.write('\r\n');

谢谢帮助(PS对不起我的英语不好)

4

1 回答 1

1
$('body').click('function'){ $(this).addClass('ex4trigger'); }
于 2015-11-02T15:58:09.300 回答