ページに jQuery が存在するかどうかを確認する必要があり、存在しない場合はそれをロードする必要があります。スクリプト タグを作成し、外部の jQuery ライブラリを参照します。残りのスクリプトを続行する前に、ライブラリがページにロードされるのを待つにはどうすればよいですか?
アップデート:
祇園の提案の後の様子は次のとおりです。
if (typeof jQuery === 'undefined') {
var j = document.createElement('SCRIPT');
j.type = 'text/javascript';
j.src = '//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js';
document.getElementsByTagName('head')[0].appendChild(j);
j.onload = function () {
var section = document.createElement('DIV');
section.setAttribute('style', 'height:300px; width:250px; position: fixed; right: 0px; top: 100px;z-index: 9999; border-style:solid;border-width:1px;');
section.innerHTML = '<p>steps</p><textarea name="steps"></textarea><p>expected results</p><textarea name="results"></textarea><p><input type="button" name="submit" value="add test case" /></p>';
document.getElementsByTagName('body')[0].appendChild(section);
};
}