私の jsp ページは JQuery モバイルで設計されています。YouTube チャンネル スクリプト タグを埋め込むと、機能しません。しかし、タグを単純なjspファイルに入れると、問題なく動作します。私のコードは以下のとおりです。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<a href="index.jsp" data-role="button" data-icon="home"
data-iconpos="notext"></a>
<h1>home</h1>
</div>
<!-- /header -->
<div data-role="content">
<script
src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/youtube.xml&up_channel=mychannel&synd=open&w=320&h=390&title=&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js"></div>
<!-- /content -->
</div>
<!-- /page -->
</body>
</html>