我想为下面2个jquery选择的组合框实现边框,如下图所示我想为下面的2个搜索框设置边框
Option Explicit
Sub Test()
Dim arrFiles As Variant
Dim arrSearchTerms As Variant
Dim arrMatches As Variant
Dim intTargetCounter As Integer
Dim intMatchCounter As Integer
'get files
arrFiles = GetFileList("C:\WINDOWS", "idw")
If UBound(arrFiles) = 0 Then
MsgBox "No files found"
Exit Sub
End If
'iterate search terms and check collection
arrSearchTerms = Array("1XX-XXXX", "2XX-XXXX")
For intTargetCounter = LBound(arrSearchTerms) To UBound(arrSearchTerms)
arrMatches = Filter(arrFiles, arrSearchTerms(intTargetCounter))
For intMatchCounter = LBound(arrMatches) To UBound(arrMatches)
Debug.Print arrMatches(intMatchCounter)
Next intMatchCounter
Next intTargetCounter
End Sub
Function GetFileList(strRoot As String, strExtensionFilter As String) As Variant
Dim objShell As Object
Dim strCommand As String
Dim objShellExe As Object
On Error GoTo CleanUp
'call cmd
Set objShell = CreateObject("WScript.Shell")
strCommand = "%COMSPEC% /C DIR /S /B /A:-D *." & strExtensionFilter
objShell.CurrentDirectory = strRoot
Set objShellExe = objShell.Exec(strCommand)
'wait for listing
While objShellExe.Status <> 1
DoEvents
Wend
'convert std out to array
GetFileList = Split(objShellExe.StdOut.ReadAll, vbCrLf)
CleanUp:
If Err.Number <> 0 Then
Debug.Print Err.Number & ": " & Err.Description
End If
Set objShellExe = Nothing
Set objShell = Nothing
End Function
$(".chosen-select").chosen();
答案 0 :(得分:2)
请尝试以下代码。
sh
&#13;
CMD
&#13;
$(".chosen-select").chosen();
&#13;
答案 1 :(得分:1)
$(".chosen-select").chosen();
&#13;
<link rel="stylesheet" href="http://harvesthq.github.io/chosen/chosen.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="http://harvesthq.github.io/chosen/chosen.jquery.js" type="text/javascript"></script>
<div style="border: medium solid;
max-width: 354px;
padding: 20px;">
<em>Multiple Select with Groups</em><br>
<select data-placeholder="Your Favorite Football Team" style="width:350px;" class="chosen-select" multiple tabindex="6">
<option value=""></option>
<optgroup label="NFC EAST">
<option>Dallas Cowboys</option>
<option>New York Giants</option>
<option>Philadelphia Eagles</option>
<option>Washington Redskins</option>
</optgroup>
</select>
<select data-placeholder="Your Favorite Football Team" style="width:350px;" class="chosen-select" multiple tabindex="6">
<option value=""></option>
<optgroup label="NFC EAST">
<option>Dallas Cowboys</option>
<option>New York Giants</option>
<option>Philadelphia Eagles</option>
<option>Washington Redskins</option>
</optgroup>
</select>
&#13;
答案 2 :(得分:0)
这更好
<!DOCTYPE html>
<html>
<body>
<form>
<fieldset>
<legend>Personalia:</legend>
Name: <input type="text"><br>
Email: <input type="text">
</fieldset>
</form>
</body>
</html>
&#13;