好吧,所以我在这里遇到了一些麻烦......我正试图为用户创建一个选项来嵌入我的播放器,当我在搜索框中显示代码时会破坏搜索框。
<h2> EMBED: </h2>
<input class="form-control" style="width: 100%;" type="text" name="iframe" value="<iframe width="100%" height="175" frameborder="no" scrolling="no" src="http://www.example.com.net/embed.php?id=<?php echo strip_tags( get_the_term_list( $postID, 'Song-ID', '', '', '' ) ) ?>"></iframe>" readonly>
有人可以告诉我如何让它真正起作用吗?
答案 0 :(得分:1)
这是因为您的开盘价和收盘价不符合您的预期。在字符串中使用单引号并使用双引号将其全部包装起来,如下所示:
<h2> EMBED: </h2>
<input class="form-control" style="width: 100%;" type="text" name="iframe" value="<iframe width='100%' height='175' frameborder='no' scrolling='no' src='http://www.example.com.net/embed.php?id=<?php echo strip_tags( get_the_term_list( $postID, 'Song-ID', '', '', '' ) ) ?>'></iframe>" readonly>