فهرست منبع

Listing 5.3: setting id with a value callback.

Frederic G. MARAND 9 سال پیش
والد
کامیت
fdb0db2c1b
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      Chapter 5/05.js

+ 4 - 1
Chapter 5/05.js

@@ -4,6 +4,9 @@ $(document).ready(function () {
 
   $('div.chapter a').attr({
     rel: 'external',
-    title: 'Learn more at Wikipedia'
+    title: 'Learn more at Wikipedia',
+    id: function (index, oldValue) {
+      return 'wikilink-' + index;
+    }
   });
 });