私はJavaScriptコードを持っています:
javascript: function iptxt() {
var d = document;
try {
if (!d.body) throw (0);
window.location = 'http://www.instapaper.com/text?u=' + encodeURIComponent(d.location.href);
} catch (e) {
alert('Please wait until the page has loaded.');
}
}
iptxt();
void(0)
次のように使用します。
< href="javascript:function iptxt(){var d=document;try{if(!d.body)throw(0);window.location='http://www.instapaper.com/text?u='+encodeURIComponent(d.location.href);}catch(e){alert('Please wait until the page has loaded.');}}iptxt();void(0)">Go</a>
しかし、次のように、このコードを jquery で使用したいと考えています。
<a href="#" id="go">Go</a>
そして、id go と統合される jquery コードは何になるでしょうか。
ありがとう。