我想询问是否可以在输入值中添加多个双引号,如下所示:
<input value= "<iframe src="http://xxx.xx/embed?t=<?php the_title(); ?>"
width='640' height='360'
allowscriptaccess='always' allowfullscreen='true'
scrolling='no' frameborder='0'></iframe>"
因此,整个<iframe>
元素包含在双引号内,就像src
属性(URL)的值一样,但URL不会包含在值中。
这可以实现吗?
答案 0 :(得分:1)
您可以尝试使用反斜杠转义双引号..... 有关详细信息,请访问How to properly escape quotes inside html attributes?
<input value= "<iframe src="http://xxx.xx/embed?t=<?php the_title(); ?>"
width="640" height="360"
allowscriptaccess="always" allowfullscreen="true"
scrolling="no" frameborder="0"></iframe>"