# ブックマークレットまとめ ## 関連URL [構文チェック]https://closure-compiler.appspot.com ## ひな形 ```javascript= javascript:( function(){ } )(); ``` ## ID ### テキストボックス ```javascript= javascript:( function(){ document.getElementById("txtLoginId").value="bbbbbbbbbbb"; document.getElementById("txtPassword").value="aaaaaaaaa"; } )(); ``` ### プルダウン ```javascript= javascript:( function(){ document.getElementById("select3").selectedIndex = 2; } )(); ``` ## Name ### テキストボックス ```javascript= javascript:( function(){ document.getElementsByName("txtLoginId")[0].value="bbbbbbbbbbb"; document.getElementsByName("txtPassword")[0].value="aaaaaaaaa"; } )(); ``` ### チェックボックス ```javascript= javascript:( function(){ document.getElementsByName("checkbox")[0].checked = true; document.getElementsByName("checkbox")[0].checked = false; } )(); ```