使用类似 jQuery 的命令和 Linux 脚本批量修改 HTML(在 PHP 文件中)
我有一组旧的 PHP 文件,需要修改它们的 HTML 以适应新的设计。任务包括选择特定元素、删除/添加类、附加内容和操作元素的位置。
以真正的开发人员风格,我想将其自动化。这非常适合 jQuery 或其他 JS 库(事实上我已经编写了代码来充当临时 hack)。
关于如何修改特定文件然后保存修改内容有什么建议吗?
您对使用 NodeJS 加载 jQuery 有何看法?
I have a collection of old PHP files that need to have their HTML modified to fit to a new design. Tasks include selecting particular elements, removing / adding classes, appending content and manipulating the positions of elements.
In true developer style I'd like to automate it. This is perfectly suited to jQuery or other JS libraries (in fact I've already written the code to act as a temporary hack).
Any suggestions on how to modify a specific file and then save the modified contents?
What do you think about loading jQuery with NodeJS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎需要 PHP 中的 DOM 选择器引擎。试试这个 http://code.google.com/p/phpquery/,类似于 jQuery也支持CSS3。
You seem to be in need of a DOM Selector engine in PHP. Try this http://code.google.com/p/phpquery/, similar to jQuery supports CSS3 also.