JQUERY 评估字符串
我想在 jquery 中评估这个脚本:
var name = "Brian";
var txt = "This is your {name}";
任何人都可以帮助我吗? 我对这个非常菜鸟。
谢谢
I wanted to evaluate this script in jquery:
var name = "Brian";
var txt = "This is your {name}";
Anyone can help me? I'm very noob for this one.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以连接:
或者您可以替换您的占位符:
如果您想要更复杂的字符串格式,我建议您查看StringFormat jQuery 插件
You could concatenate:
or you could replace your placeholder:
If you want more sophisticated string formatting I recommend you to give a look to the StringFormat jQuery plugin
您可以使用
http://docs.jquery.com/Plugins/Validation/jQuery。验证器.format
you could use
http://docs.jquery.com/Plugins/Validation/jQuery.validator.format