多语言网站和 .js 文件
我的网站是多语言的。我使用 php 文件来定义多种语言的单词/句子。
我的问题是我的网站包含 .js 文件,我无法在其中编写 php 代码。
当我需要在 .js 文件中发出包含某些句子或某些单词的警报时,我应该做什么?
谢谢
My website is multi-language. I'm using php files to define my words / sentences in several languages.
My problem is that my website contains .js files, in which i can't write php code.
What I am suppose to do when I need to make an alert containing some sentence or some word in my .js file ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以让你的 js 使用 json obj 或字符串数组...
然后 PHP 可以创建这些并在页面加载时将 json 或数组写入 head 部分。
You COULD have your js utilize a json obj or an array of strings...
PHP could then create these and write the json or array in the head section on page load..
你可以将 JS 文件保存为 FILENAME.js.php...在其中你可以运行一些 Magic。
you can save you JS files as FILENAME.js.php... Within them you can run some Magic.
Ajax 和 JSON 是实现此目的的最佳方法。但实际上你可以通过一些 htaccess 操作将 PHP 变成 javascript 文件。
Ajax and JSON is the best way to do this. But you can actually make put PHP is javascript files, with a little htaccess manipulation.