我有一個JavaScript代碼:如何這段JavaScript代碼轉換爲jQuery的
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>
,什麼將是jQuery代碼將與該ID去整合。
謝謝。
沒有心機,沒有幫助! – Amberlamps
jquery是JavaScript,所以你已經完成了! – Boundless
@Boundless你應該閱讀的不僅僅是問題的標題。 –