在 PHP 中将字符串从一个点剪切到另一个点
我想制作一个脚本,他的动作是将绳子从一个点切割到另一个点。
例如:
<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>
我希望脚本能够剪切所有样式。,它会是这样的:
<div id="box">xx </div>
我该怎么做?
I want to make script that his action is to cut string from one point to another point.
for example:
<div id="box" style="font-size:bold;height:30px;width:100px;border: 1px solid black">xx</div>
i want that the script will cut all the style., and it will be something like:
<div id="box">xx </div>
how can I do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想替换 style 属性,您可以这样做:
If all you want to do is replace the style attribute you can do this: