如何使用 jAlert 转义 jQuery 函数中的实体?

发布于 2024-11-07 00:15:10 字数 717 浏览 2 评论 0原文

下面是示例代码:

$("#register-button").click(function(){
    if (uname=="" || pname=="" || cemail=="" || remail=="") {
        jAlert('Please fix the validation error','Title™');
        return false;
    }
});

基本上,如果用户名、密码或电子邮件字段填写不正确,则会弹出一个 jAlert,显示“请修复验证错误”,其中包含商标标题。不幸的是,该商标并不是一个适当的实体,并且无法正确呈现。

我尝试了以下操作,但它无法正常工作:

$("#register-button").click(function(){
    if (uname=="" || pname=="" || cemail=="" || remail=="") {
        jAlert('Please fix the validation error','Title™');
        return false;
    }
});

如您所见,唯一的区别是我包含了 。然而,当 jAlert 弹出时,它不会变成

如何转义 jQuery 以便该实体正确呈现?

Here's sample code:

$("#register-button").click(function(){
    if (uname=="" || pname=="" || cemail=="" || remail=="") {
        jAlert('Please fix the validation error','Title™');
        return false;
    }
});

Basically, if username, password, or email fields aren't filled correctly, a jAlert pops up that says "Please fix the validation error" containing a title that's trademarked. Unfortunately, this trademark is not properly an entity and does not render correctly.

I tried the following but it does not work correctly:

$("#register-button").click(function(){
    if (uname=="" || pname=="" || cemail=="" || remail=="") {
        jAlert('Please fix the validation error','Title™');
        return false;
    }
});

As you can see, the only difference is that I've included . However, it does not turn into when the jAlert pops up.

How do I escape the jQuery in order for this entity to properly render?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我是有多爱你 2024-11-14 00:15:10

只需在代码中的函数级别定义它:

String.prototype.htmlEscape = function () {
  return this.replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(/</g, "<").replace(/>/g, ">");
}

现在您可以将其用作:

jAlert("Please fix the validation error".htmlEscape(),"Title™".htmlEscape());

Just define this on function level in your code:

String.prototype.htmlEscape = function () {
  return this.replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(/</g, "<").replace(/>/g, ">");
}

And now you can use it as:

jAlert("Please fix the validation error".htmlEscape(),"Title™".htmlEscape());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文