就像我们("#id_name"),(".class_name") (":input_type")在jquery中有像..etc 这样的选择器一样,如何title从输入标签中选择属性?
例如:< input type="abc" id="xyz" title="information" >
我需要一个选择器来选择标题值.帮我.
$('#categories').hover(
function() {
$(this).find('#menulist').show();
},
function() {
$(this).find('#menulist').hide();
}
)
Run Code Online (Sandbox Code Playgroud)
我还应该在悬停函数中添加什么来更改边框半径属性?