RTL Confirm and Alert in Javascript

2020-04-12 08:37发布

Can you make a confirm or alert show its message RTL and right-aligned?

2条回答
够拽才男人
2楼-- · 2020-04-12 08:52

Programmatically no, but the user's culture setting for their machine should determine which way it's presented, at least in all current browsers. I'm not aware of a comprehensive "who supports it" list though.

查看更多
仙女界的扛把子
3楼-- · 2020-04-12 09:07

Try adding this at the beginning of your message: "\u200f\u200f"

for example:

alert("\u200f\u200f"+ message);

or

confirm("\u200f\u200f"+ message);
查看更多
登录 后发表回答