コントロールで特定のバージョンの jQuery (既にページに割り当てられている) を使用し、残りのコントロールのために以前のバージョンに戻す方法を以下に示します。
これが理想的ではないことはわかっていますが、who アプリは後でクリーンアップされます。
前もって感謝します。
<!-- This would be set earlier on the page. Possibly at page level or in a previous control -->
<script type="text\javascript" src='jquery-1.7.1.js'></script>
<!-- This would at the start of the control -->
<script>
var $origJquery = null; //Should be unique var name for the control
if(typeof jQuery != 'undefined')
$origJquery = jQuery.noConflict();
</script>
<script type="text\javascript" src='jquery-1.7.2.js'></script>
<script>
var $newJquery = jQuery.noConflict();
//Can use $newJquery here
</script>
<script>
//Set back when finished at end of control
if($origJquery != null)
{
$ = $origJquery;
$origJquery = null;
}
</script>