model - MJExtension 扩展工具(基于js)

model - MJExtension 扩展工具(基于js)_第1张图片


<html xmlns="http://www.w3.org/1999/html">
<title> 赵大财 扩展工具</title>
<head>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form action="/">
<textarea style="width:1200px; height:300px;" id="cate" >
--这里请输入 你的数据
</textarea>
<br>
<input type="submit" value="改变" style="width:300px; height:100px;" onclick="return submitForm()";/>
</form>

<script language="javascript">
function submitForm(){
    var cate=$("#cate").val();
    var arr= new Array(); //定义一数组
    
    arr=cate.split(","); //字符分割
    for (i=0;i<arr.length ;i++ )
        
    {
        arr2 = new Array(); //定义一数组
        arr2 =   arr[i].split(":"); //字符分割
        
        ss = $.trim(arr2[0]);
        
        ss = ss.substr(1, ss.length-2); // 获取子字符串。
        document.write("/** */"+"<br/>"); //分割后的字符输出
        if(ss=="id"){
            document.write("@property (nonatomic, copy) NSString *ID" +";"+ "<br/>"+"<br/>"); //分割后的字符输出
        }else{
            document.write("@property (nonatomic, copy) NSString *"+ss +";"+ "<br/>"+"<br/>"); //分割后的字符输出
            
        }
        
    }
    
    
    return false;
}
</script>


</body>
</html>





你可能感兴趣的:(model - MJExtension 扩展工具(基于js))