码迷,mamicode.com
首页 > 其他好文 > 详细

easyUI 操作

时间:2016-11-16 01:30:01      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:length   alert   java   ++   blog   ons   点击   ati   itemid   

<a href="javascript:void(0)" onclick="locationUrl()">点击 自动加链接</a>

function locationUrl(){
  var url = ‘***‘;
  window.location.href  = url;

//easyUI 
<script>
//选中行的值
        function getSelected(){
            var row = $(#tt).datagrid(getSelected);
            if (row){
                alert(Item ID:+row.itemid+"\nPrice:"+row.listprice);
            }
        }
//所有行的值
        function getSelections(){
            var ids = [];
            var rows = $(#tt).datagrid(getSelections);   //#tt table 下的id 
            for(var i=0; i<rows.length; i++){
                ids.push(rows[i].itemid);
            }
            alert(ids.join(\n));
        }
    </script>
<a href="#" onclick="getSelected()">GetSelected</a>
        <a href="#" onclick="getSelections()">GetSelections</a>

 

easyUI 操作

标签:length   alert   java   ++   blog   ons   点击   ati   itemid   

原文地址:http://www.cnblogs.com/laopo/p/6067707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!