Created
December 30, 2018 04:02
-
-
Save clucle/c52348000febd1349e86ab88bf421ec2 to your computer and use it in GitHub Desktop.
append jquery cdn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var jq = document.createElement('script'); | |
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
/* test */ | |
/* | |
for (var i = 1; i < 18; i++) { | |
var btn = $( "input:radio[name='a" + i + "']" ) | |
btn[0].checked=true; | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment