瀏覽單個文章
michelle-lai529
Regular Member
 

加入日期: Jun 2010
文章: 86
引用:
作者Hermit Crab
新聞内文有提到:
法院認定公仔為***穢物品的依據是公安機關的鑒定結論,
以及兩名購買公仔時未滿18歲的證人對於案涉公仔的處置方式。

判決書顯示,兩名證人發現公仔對胸部和下體生殖器有明顯刻畫,
其中一人怕父母看到不好,特地用帶顏色的膠帶擋住了公仔的胸部和下體;
另一人覺得公仔放學校寢室不好,在家裡擺放又怕父母看到被責備,
一直把公仔放在房間床底下。

法院指出,兩名證人購買公仔後也認為有色情內容而羞於展示,故其誨***性不言而喻。

根據判決書,公仔工廠包含老闆在內,共有12人被判刑,
最重的3人為工廠老闆、及經理,刑期為4年9個月、4年3個月,以及4年9個月;
另外9人被判緩刑,包含倉庫主管、開模師、設計師,以及淘寶店鋪管理者等。

剛才注意到,我寫的script不能用了嗎,我自己可以啊
在附上一次script
引用:
// ==UserScript==
// @name pcdvd隱藏發文
// @namespace http://tampermonkey.net/
// @version 2024-06-11
// @description pcdvd隱藏發文
// @author You
// @match https://www.pcdvd.com.tw/forumdisplay.php*
// @match https://www.pcdvd.com.tw/showthread.php*
// @icon
// @require https://code.jquery.com/jquery-1.11.0.min.js
// @grant none
// ==/UserScript==

(function() {
//隱藏發文ID清單陣列
var hideIDArray = [
'aaa'
,'bbb'
,'ccc'
];

//隱藏名單發文主題
$("span").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('tr').css("display", "none");
}
});

//隱藏名單發文內容
$(".bigusername").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('.tborder').css("display", "none");
}
});

//隱藏名單發文內容被引用及黑名單標示
$("strong").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('table').css("display", "none");
}
});

//隱藏列表及發文內容下方方格區塊
$(document).ready(function(){
$("#_popIn_recommend").hide();
$("#_popIn_recommend_word").hide();
});

})();
舊 2025-05-08, 03:29 PM #13
回應時引用此文章
michelle-lai529離線中