gpt4 book ai didi

javascript - 在 AJAX 错误中嵌入代码

转载 作者:行者123 更新时间:2023-12-02 20:07:49 28 4
gpt4 key购买 nike

我正在尝试使用 AJAX 调用嵌入代码来进行嵌入,因为我有很多 channel ,并且我不想使用 PHP echo

我使用这个代码

embedios="<video x-webkit-airplay=\"allow\"> ";
embedios=embedios+"<source src=\""+stream+"\" type=\"video/mp4\"> ";
embedios=embedios+"<!-- other sources and fallbacks go here --></video> ";
embed=embedios;

问题是输出是这样的

<video x-webkit-airplay="allow" tabindex="0">
<source type="video/mp4" src="http://yoursn0w.com/ch3.m3u8 "></source>
<!-- other sources and fallbacks go here -->
</video>

但我希望它像这样出现

<video x-webkit-airplay="allow"> 
<source src="http://yoursn0w.com/ch3.m3u8" type="video/mp4">
<!-- other sources and fallbacks go here -->
</video>

我不知道我在这段代码中做错了什么

最佳答案

您没有终止字符串:

embedios="<video x-webkit-airplay=\"allow\">"
embedios=embedios+"<source src=\""+stream+"\" type=\"video/mp4\">"
embedios=embedios+"<!-- other sources and fallbacks go here --></video>"
embed=embedios;

关于javascript - 在 AJAX 错误中嵌入代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7275492/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com