Quellcode durchsuchen

标签传值问题

luyanan vor 7 Jahren
Ursprung
Commit
4da414ec71
4 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  1. 1 1
      e/a.html
  2. 1 1
      e/l.html
  3. 1 1
      e/r.html
  4. 1 1
      e/z.html

+ 1 - 1
e/a.html

154
			
154
			
155
		})
155
		})
156
		$(".tagList").on("click", "li", function() {
156
		$(".tagList").on("click", "li", function() {
157
			var keyCon=$(this).find("span").text();
157
			var keyCon=$(this).find(".h2Font").text();
158
			location.href="http://" + window.location.host + "/e/search.html?flag=3&key=" + keyCon;
158
			location.href="http://" + window.location.host + "/e/search.html?flag=3&key=" + keyCon;
159
		})
159
		})
160
	
160
	

+ 1 - 1
e/l.html

243
		}
243
		}
244
	})
244
	})
245
	$(".tagList").on("click", "li", function() {
245
	$(".tagList").on("click", "li", function() {
246
		var keyCon=$(this).find("span").text();
246
		var keyCon=$(this).find(".h2Font").text();
247
		location.href="http://" + window.location.host + "/e/search.html?flag=5&key=" + keyCon;
247
		location.href="http://" + window.location.host + "/e/search.html?flag=5&key=" + keyCon;
248
	})
248
	})
249
	
249
	

+ 1 - 1
e/r.html

469
	})
469
	})
470
470
471
	$(".tagList").on("click", "li", function() {
471
	$(".tagList").on("click", "li", function() {
472
		var keyCon=$(this).find("span").text();
472
		var keyCon=$(this).find(".h2Font").text();
473
		location.href="http://" + window.location.host + "/e/search.html?flag=2&key=" + keyCon;
473
		location.href="http://" + window.location.host + "/e/search.html?flag=2&key=" + keyCon;
474
	})
474
	})
475
	
475
	

+ 1 - 1
e/z.html

250
		}
250
		}
251
	})
251
	})
252
	$(".tagList").on("click", "li", function() {
252
	$(".tagList").on("click", "li", function() {
253
		var keyCon=$(this).find("span").text();
253
		var keyCon=$(this).find(".h2Font").text();
254
		location.href="http://" + window.location.host + "/e/search.html?flag=4&key=" + keyCon;
254
		location.href="http://" + window.location.host + "/e/search.html?flag=4&key=" + keyCon;
255
	})
255
	})
256
		
256