我在jquery中有一些腳本,但我有一個問題,在頁面上我不使用Jquery,這只是我需要的例子,它要複雜得多。Jquery to pure JS
$('img').each(function(){
$(this).removeAttr('width');
$(this).removeAttr('height');
$(this).addClass('img-responsive');
});
它是從圖像中的運動屬性,並添加類響應,因爲用戶使用了很多TinyMCE的,默認情況下它是把witdh和高度。我知道,也許有一些插件TinyMCE的,但我需要一些常見的解決方案
它很簡單,你可以搜索。 [Document.querySelectorAll()](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll),[removeAttribute()](https://developer.mozilla.org/en -US/docs/Web/API/Element/removeAttribute)https://developer.mozilla.org/en/docs/Web/API/Element/classList – Satpal
jQuery是開源的。從那裏提取你需要的東西。 –
爲什麼你不能僅僅添加jquery到那個頁面呢?如果您使用您在其他頁面上提供的相同副本/網址,則不會產生任何費用,因爲瀏覽器已將其緩存。 –