jQuery Validate驗(yàn)證框架詳解

jQuery校驗(yàn)官網(wǎng)地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation

一谴忧、導(dǎo)入js庫

<script type="text/javascript" src="<%=path %>/validate/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="<%=path %>/validate/jquery.validate.min.js"></script>

注:<%=request.getContextPath() %>返回web項(xiàng)目的根路徑豺憔。

二艰亮、默認(rèn)校驗(yàn)規(guī)則

(1)盈匾、required:true               必輸字段
(2)、remote:"remote-valid.jsp"   使用ajax方法調(diào)用remote-valid.jsp驗(yàn)證輸入值
(3)泽西、email:true                  必須輸入正確格式的電子郵件
(4)佛纫、url:true                    必須輸入正確格式的網(wǎng)址
(5)、date:true                   必須輸入正確格式的日期萌焰,日期校驗(yàn)ie6出錯哺眯,慎用
(6)、dateISO:true                必須輸入正確格式的日期(ISO)扒俯,例如:2009-06-23奶卓,1998/01/22 只驗(yàn)證格式,不驗(yàn)證有效性
(7)撼玄、number:true                 必須輸入合法的數(shù)字(負(fù)數(shù)夺姑,小數(shù))
(8)、digits:true                 必須輸入整數(shù)
(9)互纯、creditcard:true             必須輸入合法的信用卡號
(10)瑟幕、equalTo:"#password"        輸入值必須和#password相同
(11)、accept:                    輸入擁有合法后綴名的字符串(上傳文件的后綴)
(12)留潦、maxlength:5                輸入長度最多是5的字符串(漢字算一個(gè)字符)
(13)只盹、minlength:10               輸入長度最小是10的字符串(漢字算一個(gè)字符)
(14)、rangelength:[5,10]         輸入長度必須介于 5 和 10 之間的字符串")(漢字算一個(gè)字符)
(15)兔院、range:[5,10]               輸入值必須介于 5 和 10 之間
(16)殖卑、max:5                      輸入值不能大于5
(17)、min:10                     輸入值不能小于10

三坊萝、默認(rèn)的提示

messages: {
required: "This field is required.",
remote: "Please fix this field.",
email: "Please enter a valid email address.",
url: "Please enter a valid URL.",
date: "Please enter a valid date.",
dateISO: "Please enter a valid date (ISO).",
dateDE: "Bitte geben Sie ein g眉ltiges Datum ein.",
number: "Please enter a valid number.",
numberDE: "Bitte geben Sie eine Nummer ein.",
digits: "Please enter only digits",
creditcard: "Please enter a valid credit card number.",
equalTo: "Please enter the same value again.",
accept: "Please enter a value with a valid extension.",
maxlength: $.validator.format("Please enter no more than {0} characters."),
minlength: $.validator.format("Please enter at least {0} characters."),
rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),
range: $.validator.format("Please enter a value between {0} and {1}."),
max: $.validator.format("Please enter a value less than or equal to {0}."),
min: $.validator.format("Please enter a value greater than or equal to {0}.")
},

如需要修改孵稽,可在js代碼中加入:

$.extend($.validator.messages, {
    required: "必選字段",
    remote: "請修正該字段",
    email: "請輸入正確格式的電子郵件",
    url: "請輸入合法的網(wǎng)址",
    date: "請輸入合法的日期",
    dateISO: "請輸入合法的日期 (ISO).",
    number: "請輸入合法的數(shù)字",
    digits: "只能輸入整數(shù)",
    creditcard: "請輸入合法的信用卡號",
    equalTo: "請?jiān)俅屋斎胂嗤闹?,
    accept: "請輸入擁有合法后綴名的字符串",
    maxlength: $.validator.format("請輸入一個(gè)長度最多是 {0} 的字符串"),
    minlength: $.validator.format("請輸入一個(gè)長度最少是 {0} 的字符串"),
    rangelength: $.validator.format("請輸入一個(gè)長度介于 {0} 和 {1} 之間的字符串"),
    range: $.validator.format("請輸入一個(gè)介于 {0} 和 {1} 之間的值"),
    max: $.validator.format("請輸入一個(gè)最大為 {0} 的值"),
    min: $.validator.format("請輸入一個(gè)最小為 {0} 的值")
});

推薦做法许起,將此文件放入messages_cn.js中,在頁面中引入
<script type="text/javascript" src="<%=path %>/validate/messages_cn.js"></script>
四菩鲜、使用方式
1园细、metadata用法,將校驗(yàn)規(guī)則寫到控件中

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://" + request.getServerName() + ":"
            + request.getServerPort() + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <base href="<%=basePath%>">

        <title>jQuery Validate驗(yàn)證框架詳解-metadata用法</title>

        <meta http-equiv="pragma" content="no-cache">
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="This is my page">
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/jquery-1.6.2.min.js"></script>
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/jquery.validate.min.js"></script>
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/jquery.metadata.min.js"></script>
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/messages_zh.js"></script>
        <script type="text/javascript">
        $(function(){
            $("#myform").validate();
        });
        </script>
    </head>

    <body>
        <form id="myform" method="post" action="">
            <p>
                <label for="myname">用戶名:</label>
                <!-- id和name最好同時(shí)寫上 -->
                <input id="myname" name="myname" class="required" />
            </p>
            <p>
                <label for="email">E-Mail:</label>
                <input id="email" name="email" class="required email" />
            </p>
            <p>
                <label for="password">登陸密碼:</label>
                <input id="password" name="password" type="password"
                    class="{required:true,minlength:5}" />
            </p>
            <p>
                <label for="confirm_password">確認(rèn)密碼:</label>
                <input id="confirm_password" name="confirm_password" type="password"
                    class="{required:true,minlength:5,equalTo:'#password'}" />
            </p>
            <p>
                <label for="confirm_password">性別:</label>
                <!-- 表示必須選中一個(gè) -->
                <input  type="radio" id="gender_male" value="m" name="gender" class="{required:true}" />
                <input  type="radio" id="gender_female" value="f" name="gender"/>
            </p>
            <p>
                <label for="confirm_password">愛好:</label>
                <!-- checkbox的minlength表示必須選中的最小個(gè)數(shù),maxlength表示最大的選中個(gè)數(shù),rangelength:[2,3]表示選中個(gè)數(shù)區(qū)間  -->
                <input type="checkbox" id="spam_email" value="email" name="spam[]" class="{required:true, minlength:2}" />
                <input type="checkbox" id="spam_phone" value="phone" name="spam[]" />
                <input type="checkbox" id="spam_mail" value="mail" name="spam[]" />
            </p>
            <p>
                <label for="confirm_password">城市:</label>
                <select id="jungle" name="jungle" title="Please select something!" class="{required:true}">
                    <option value=""></option>
                    <option value="1">廈門</option>
                    <option value="2">泉州</option>
                <option value="3">Oi</option>
            </select>
            </p>
            <p>
                <input class="submit" type="submit" value="立即注冊" />
            </p>
        </form>
    </body>
</html>
圖片.png

使用class="{}"的方式接校,必須引入包:jquery.metadata.js猛频;
可以使用如下的方法,修改提示內(nèi)容:class="{required:true,minlength:5,messages:{required:'請輸入內(nèi)容'}}"蛛勉;
在使用equalTo關(guān)鍵字時(shí)鹿寻,后面的內(nèi)容必須加上引號,如下代碼:class="{requir
ed:true,minlength:5,equalTo:'#password'}"诽凌。

2毡熏、將校驗(yàn)規(guī)則寫到j(luò)s代碼中

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://" + request.getServerName() + ":"
            + request.getServerPort() + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <base href="<%=basePath%>">

        <title>jQuery Validate驗(yàn)證框架詳解</title>

        <meta http-equiv="pragma" content="no-cache">
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="This is my page">
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/jquery-1.6.2.min.js"></script>
        <script type="text/javascript" src="<%=request.getContextPath()%>/validate/jquery.validate.min.js"></script>
        <script type="text/javascript">
        $(function(){
            var validate = $("#myform").validate({
                debug: true, //調(diào)試模式取消submit的默認(rèn)提交功能   
                //errorClass: "label.error", //默認(rèn)為錯誤的樣式類為:error   
                focusInvalid: false, //當(dāng)為false時(shí),驗(yàn)證無效時(shí)侣诵,沒有焦點(diǎn)響應(yīng)  
                onkeyup: false,   
                submitHandler: function(form){   //表單提交句柄,為一回調(diào)函數(shù)痢法,帶一個(gè)參數(shù):form   
                    alert("提交表單");   
                    form.submit();   //提交表單   
                },   
                
                rules:{
                    myname:{
                        required:true
                    },
                    email:{
                        required:true,
                        email:true
                    },
                    password:{
                        required:true,
                        rangelength:[3,10]
                    },
                    confirm_password:{
                        equalTo:"#password"
                    }                    
                },
                messages:{
                    myname:{
                        required:"必填"
                    },
                    email:{
                        required:"必填",
                        email:"E-Mail格式不正確"
                    },
                    password:{
                        required: "不能為空",
                        rangelength: $.format("密碼最小長度:{0}, 最大長度:{1}。")
                    },
                    confirm_password:{
                        equalTo:"兩次密碼輸入不一致"
                    }                                    
                }
                          
            });    
    
        });
        </script>
    </head>

    <body>
        <form id="myform" method="post" action="">
            <p>
                <label for="myname">用戶名:</label>
                <!-- id和name最好同時(shí)寫上 -->
                <input id="myname" name="myname" />
            </p>
            <p>
                <label for="email">E-Mail:</label>
                <input id="email" name="email" />
            </p>
            <p>
                <label for="password">登陸密碼:</label>
                <input id="password" name="password" type="password" />
            </p>
            <p>
                <label for="confirm_password">確認(rèn)密碼:</label>
                <input id="confirm_password" name="confirm_password" type="password" />
            </p>
            <p>
                <input class="submit" type="submit" value="立即注冊" />
            </p>
        </form>
    </body>
</html>
圖片.png

五窝趣、常用方法及注意問題
1疯暑、用其他方式替代默認(rèn)的submit

$(function(){
   $("#signupForm").validate({
        submitHandler:function(form){
            alert("submit!");   
            form.submit();
        }    
    });
});

可以設(shè)置validate的默認(rèn)值,寫法如下:

$.validator.setDefaults({
submitHandler: function(form) { alert("submit!"); form.submit(); }
});

如果想提交表單哑舒,需要使用form.submit()妇拯,而不要使用$(form).submit()

2、debug洗鸵,只驗(yàn)證不提交表單
如果這個(gè)參數(shù)為true越锈,那么表單不會提交,只進(jìn)行檢查膘滨,調(diào)試時(shí)十分方便

$(function(){
    $("#signupForm").validate({
        debug:true
    });
});

如果一個(gè)頁面中有多個(gè)表單都想設(shè)置成為debug甘凭,用

$.validator.setDefaults({
debug: true
})

3、ignore:忽略某些元素不驗(yàn)證
ignore: ".ignore"

4火邓、更改錯誤信息顯示的位置
errorPlacement:Callback

Default: 把錯誤信息放在驗(yàn)證的元素后面
指明錯誤放置的位置丹弱,默認(rèn)情況是:error.appendTo(element.parent());即把錯誤信息放在驗(yàn)證的元素后面

errorPlacement: function(error, element) {
     error.appendTo(element.parent());
}

//示例

<tr>
    <td class="label"><label id="lfirstname" for="firstname">First Name</label></td>
    <td class="field"><input id="firstname" name="firstname" type="text" value="" maxlength="100" /></td>
    <td class="status"></td>
</tr>
<tr>
    <td style="padding-right: 5px;">
        <input id="dateformat_eu" name="dateformat" type="radio" value="0" />
        <label id="ldateformat_eu" for="dateformat_eu">14/02/07</label>
    </td>
    <td style="padding-left: 5px;">
        <input id="dateformat_am" name="dateformat" type="radio" value="1"  />
        <label id="ldateformat_am" for="dateformat_am">02/14/07</label>
    </td>
    <td></td>
</tr>
<tr>
    <td class="label">&nbsp;</td>
    <td class="field" colspan="2">
        <div id="termswrap">
            <input id="terms" type="checkbox" name="terms" />
            <label id="lterms" for="terms">I have read and accept the Terms of Use.</label>
        </div>
    </td>
</tr>

errorPlacement: function(error, element) {
    if (element.is(":radio"))
        error.appendTo(element.parent().next().next());
    else if (element.is(":checkbox"))
        error.appendTo(element.next());
    else
        error.appendTo(element.parent().next());
}

代碼的作用是:一般情況下把錯誤信息顯示在<td class="status"></td>中,如果是radio顯示在<td></td>中铲咨,如果是checkbox顯示在內(nèi)容的后面

errorClass:String Default: "error"
指定錯誤提示的css類名躲胳,可以自定義錯誤提示的樣式

errorElement:String Default: "label"
用什么標(biāo)簽標(biāo)記錯誤,默認(rèn)的是label你可以改成em

errorContainer:Selector
顯示或者隱藏驗(yàn)證信息纤勒,可以自動實(shí)現(xiàn)有錯誤信息出現(xiàn)時(shí)把容器屬性變?yōu)轱@示坯苹,無錯誤時(shí)隱藏,用處不大
errorContainer: "#messageBox1, #messageBox2"

errorLabelContainer:Selector
把錯誤信息統(tǒng)一放在一個(gè)容器里面摇天。

wrapper:String
用什么標(biāo)簽再把上邊的errorELement包起來

一般這三個(gè)屬性同時(shí)使用粹湃,實(shí)現(xiàn)在一個(gè)容器內(nèi)顯示所有錯誤提示的功能恐仑,并且沒有信息時(shí)自動隱藏
errorContainer: "div.error",
errorLabelContainer: $("#signupForm div.error"),
wrapper: "li"

5、更改錯誤信息顯示的樣式
設(shè)置錯誤提示的樣式为鳄,可以增加圖標(biāo)顯示裳仆,在該系統(tǒng)中已經(jīng)建立了一個(gè)validation.css專門用于維護(hù)校驗(yàn)文件的樣式

<pre>input.error { border: 1px solid red; }
label.error {
    background:url("./demo/images/unchecked.gif") no-repeat 0px 0px;
    padding-left: 16px;
    padding-bottom: 2px;
    font-weight: bold;
    color: #EA5200;
}
label.checked {
    background:url("./demo/images/checked.gif") no-repeat 0px 0px;
}</pre>

6、每個(gè)字段驗(yàn)證通過執(zhí)行函數(shù)
success:String,Callback

要驗(yàn)證的元素通過驗(yàn)證后的動作孤钦,如果跟一個(gè)字符串鉴逞,會當(dāng)做一個(gè)css類,也可跟一個(gè)函數(shù)

<pre>success: function(label) {
    // set &nbsp; as text for IE
    label.html("&nbsp;").addClass("checked");
    //label.addClass("valid").text("Ok!")
}</pre>

添加"valid"到驗(yàn)證元素, 在CSS中定義的樣式<style>label.valid {}</style>
success: "valid"

7司训、驗(yàn)證的觸發(fā)方式修改
下面的雖然是boolean型的,但建議除非要改為false,否則別亂添加液南。
a.onsubmit:Boolean Default: true
提交時(shí)驗(yàn)證. 設(shè)置唯false就用其他方法去驗(yàn)證
b.onfocusout:Boolean Default: true
失去焦點(diǎn)是驗(yàn)證(不包括checkboxes/radio buttons)
c.onkeyup:Boolean Default: true
在keyup時(shí)驗(yàn)證.
d.onclick:Boolean Default: true
在checkboxes 和 radio 點(diǎn)擊時(shí)驗(yàn)證
e.focusInvalid:Boolean Default: true
提交表單后壳猜,未通過驗(yàn)證的表單(第一個(gè)或提交之前獲得焦點(diǎn)的未通過驗(yàn)證的表單)會獲得焦點(diǎn)
f.focusCleanup:Boolean Default: false
如果是true那么當(dāng)未通過驗(yàn)證的元素獲得焦點(diǎn)時(shí),移除錯誤提示滑凉。避免和focusInvalid一起用

8统扳、異步驗(yàn)證
remote:URL
使用ajax方式進(jìn)行驗(yàn)證,默認(rèn)會提交當(dāng)前驗(yàn)證的值到遠(yuǎn)程地址畅姊,如果需要提交其他的值咒钟,可以使用data選項(xiàng)

<pre>示例一:

remote: "check-email.php" 示例二:
remote: {
    url: "check-email.php",     //后臺處理程序
    type: "post",               //數(shù)據(jù)發(fā)送方式
    dataType: "json",           //接受數(shù)據(jù)格式 
    data: {                     //要傳遞的數(shù)據(jù)
        username: function() { return $("#username").val();
        }
    }
}

遠(yuǎn)程地址只能輸出"true"或"false",不能有其它輸出若未。

9朱嘴、添加自定義校驗(yàn)
addMethod:name, method, message
自定義驗(yàn)證方法

// 中文字兩個(gè)字節(jié)
jQuery.validator.addMethod( "byteRangeLength", function(value, element, param) { var length = value.length; for(var i = 0; i < value.length; i++){ if(value.charCodeAt(i) > 127){
                length++;
            }
        } return this.optional(element) || (length >= param[0] && length <= param[1]);   
    }, 
    $.validator.format("請確保輸入的值在{0}-{1}個(gè)字節(jié)之間(一個(gè)中文字算2個(gè)字節(jié))")
); // 郵政編碼驗(yàn)證 
jQuery.validator.addMethod("isZipCode", function(value, element) { var tel = /^[0-9]{6}$/; return this.optional(element) || (tel.test(value));
}, "請正確填寫您的郵政編碼");</pre>

1.要在additional-methods.js文件中添加或者在jquery.validate.js添加
建議一般寫在additional-methods.js文件中

2.在messages_cn.js文件添加:isZipCode: "只能包括中文字、英文字母粗合、數(shù)字和下劃線",
調(diào)用前要添加對additional-methods.js文件的引用萍嬉。

10、radio和checkbox隙疚、select的驗(yàn)證

1.radio的required表示必須選中一個(gè)
<input  type="radio" id="gender_male" value="m" name="gender" class="{required:true}" />
<input  type="radio" id="gender_female" value="f" name="gender"/>

2.checkbox的required表示必須選中
<input type="checkbox" class="checkbox" id="agree" name="agree" class="{required:true}" />

checkbox的minlength表示必須選中的最小個(gè)數(shù),maxlength表示最大的選中個(gè)數(shù),rangelength:[2,3]表示選中個(gè)數(shù)區(qū)間
<input type="checkbox" id="spam_email" value="email" name="spam[]" class="{required:true, minlength:2}" />
<input type="checkbox" id="spam_phone" value="phone" name="spam[]" />
<input type="checkbox" id="spam_mail" value="mail" name="spam[]" />

3.select的required表示選中的value不能為空
<select id="jungle" name="jungle" title="Please select something!" class="{required:true}">
    <option value=""></option>
    <option value="1">Buga</option>
    <option value="2">Baga</option>
    <option value="3">Oi</option>
</select>
 
select的minlength表示選中的最小個(gè)數(shù)(可多選的select),maxlength表示最大的選中個(gè) 數(shù),rangelength:[2,3]表示選中個(gè)數(shù)區(qū)間
<select id="fruit" name="fruit" title="Please select at least two fruits" class="{required:true, minlength:2}" multiple="multiple">
    <option value="b">Banana</option>
    <option value="a">Apple</option>
    <option value="p">Peach</option>
    <option value="t">Turtle</option>
</select>

參考:
https://www.cnblogs.com/linjiqin/p/3431835.html

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末壤追,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子供屉,更是在濱河造成了極大的恐慌行冰,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,084評論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件伶丐,死亡現(xiàn)場離奇詭異悼做,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)撵割,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,623評論 3 392
  • 文/潘曉璐 我一進(jìn)店門贿堰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人啡彬,你說我怎么就攤上這事羹与」使瑁” “怎么了?”我有些...
    開封第一講書人閱讀 163,450評論 0 353
  • 文/不壞的土叔 我叫張陵纵搁,是天一觀的道長吃衅。 經(jīng)常有香客問我,道長腾誉,這世上最難降的妖魔是什么徘层? 我笑而不...
    開封第一講書人閱讀 58,322評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮利职,結(jié)果婚禮上趣效,老公的妹妹穿的比我還像新娘。我一直安慰自己跷敬,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,370評論 6 390
  • 文/花漫 我一把揭開白布热押。 她就那樣靜靜地躺著西傀,像睡著了一般。 火紅的嫁衣襯著肌膚如雪桶癣。 梳的紋絲不亂的頭發(fā)上拥褂,一...
    開封第一講書人閱讀 51,274評論 1 300
  • 那天,我揣著相機(jī)與錄音牙寞,去河邊找鬼饺鹃。 笑死,一個(gè)胖子當(dāng)著我的面吹牛间雀,可吹牛的內(nèi)容都是我干的尤慰。 我是一名探鬼主播,決...
    沈念sama閱讀 40,126評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼雷蹂,長吁一口氣:“原來是場噩夢啊……” “哼伟端!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起匪煌,我...
    開封第一講書人閱讀 38,980評論 0 275
  • 序言:老撾萬榮一對情侶失蹤责蝠,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后萎庭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體霜医,經(jīng)...
    沈念sama閱讀 45,414評論 1 313
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,599評論 3 334
  • 正文 我和宋清朗相戀三年驳规,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了肴敛。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,773評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖医男,靈堂內(nèi)的尸體忽然破棺而出砸狞,到底是詐尸還是另有隱情,我是刑警寧澤镀梭,帶...
    沈念sama閱讀 35,470評論 5 344
  • 正文 年R本政府宣布刀森,位于F島的核電站,受9級特大地震影響报账,放射性物質(zhì)發(fā)生泄漏研底。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,080評論 3 327
  • 文/蒙蒙 一透罢、第九天 我趴在偏房一處隱蔽的房頂上張望榜晦。 院中可真熱鬧,春花似錦羽圃、人聲如沸芽隆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,713評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至牙躺,卻和暖如春愁憔,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背孽拷。 一陣腳步聲響...
    開封第一講書人閱讀 32,852評論 1 269
  • 我被黑心中介騙來泰國打工吨掌, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人脓恕。 一個(gè)月前我還...
    沈念sama閱讀 47,865評論 2 370
  • 正文 我出身青樓膜宋,卻偏偏與公主長得像,于是被迫代替她去往敵國和親炼幔。 傳聞我的和親對象是個(gè)殘疾皇子秋茫,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,689評論 2 354