更改Jquery移动元素的大纲/边框

时间:2014-07-01 04:39:30

标签: html css jquery-mobile

我正在尝试将默认的天蓝色轮廓颜色更改为某些Jquery移动元素的绿色和输入 enter image description here

我想要相同的发光边框但是绿色 以下是我在onfocus事件

上尝试过的内容
function add_green_border(x)
{
x.style.outline = "1px solid green";    
}

但它不起作用..

这是小提琴 http://jsfiddle.net/SaXYL/1/

1 个答案:

答案 0 :(得分:3)

这可以解决您的问题:

.ui-focus {
    box-shadow: 0 0 5px green;
}

小提琴:http://jsfiddle.net/LimitedWard/Lf66a/1/