LoginSignup
1
2

More than 5 years have passed since last update.

jQueryでGETを埋め込む

Last updated at Posted at 2013-07-07

はじめに

  • ページ読み込み時に別サイトへのGETアクセスがしたい時にjQueryを使えば簡単に書ける
    • 例) xxxx.phpにアクセスして何らかの処理をしたい

必要な記述

<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
  $.get("hoge.php");
</script>

~ただの宣伝~

  • 全国のSeleniumer必読
  • Seleniumerといっていますが、Selenium, SauceLabs, Travis, Jenkinsに関するノウハウ書いているのでよかったら参考にしてみてください
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2