将 PHP 字符串传递给 HTML href”属性撇号问题

发布于 2024-10-20 23:53:54 字数 387 浏览 9 评论 0原文

我正在尝试将字符串从 PHP 变量传递到 HTML

 <a href="javascript:deleteProduct('<?=addslashes($row['productName'])?>');"

问题在于撇号。该字符串可能同时包含单撇号和双撇号 ' 和 " ,如下例所示:

<a href="javascript:deleteProduct('Richdel, 2400\', 1\", fi fara solenoid');"

由于撇号的使用不正确,语法错误,它不会触发 Javascript 函数。它会处理为 \" 将是结尾href 属性的值。

我该如何解决这个问题?

I am trying to pass a string from a PHP variable to HTML

 <a href="javascript:deleteProduct('<?=addslashes($row['productName'])?>');"

The problem is with the apostrophes. The string might contain both single and double apostrophes ' and " , like in the following example:

<a href="javascript:deleteProduct('Richdel, 2400\', 1\", fi fara solenoid');"

It won't trigger the Javascript function due to the incorrect use of the apostrophes, syntax error. It processes as the \" would be the end of the href attribute's value.

How can I fix this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↘人皮目录ツ 2024-10-27 23:53:54
<?= htmlentities(addslashes($row['productName'])) ?>

会将 " 转换为 ",这样它们就会进入 HTML。

<?= htmlentities(addslashes($row['productName'])) ?>

will turn the "s into ", so they'll go into HTML.

暖心男生 2024-10-27 23:53:54

简单的字符串替换将完全删除这两种类型的引号。

<?php echo str_replace("'", '', str_replace('"', '', $row['product'])); ?>

A simple string replace will remove both types of quote entirely.

<?php echo str_replace("'", '', str_replace('"', '', $row['product'])); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文