|
|
@@ -63,9 +63,9 @@
|
|
|
<tr>
|
|
|
<td class="td_info">企业通讯地址</td>
|
|
|
<td class="td_user_info user_info address">
|
|
|
- <input style="margin-left: 0;" readonly="readonly" type="text" id="china" value="中国大陆">
|
|
|
- <input type="text" readonly="readonly" id="gangaotai" value="港澳台">
|
|
|
- <input type="text" readonly="readonly" id="overseas" value="海外">
|
|
|
+ <input style="margin-left: 0;cursor:pointer;" readonly="readonly" type="text" id="china" value="中国大陆">
|
|
|
+ <input style="cursor:pointer;" type="text" readonly="readonly" id="gangaotai" value="港澳台">
|
|
|
+ <input style="cursor:pointer;" type="text" readonly="readonly" id="overseas" value="海外">
|
|
|
<input type="text"style="display: none;" id="hidden" value="{$userinfo['area']}">
|
|
|
</td>
|
|
|
</tr>
|
|
|
@@ -85,8 +85,8 @@
|
|
|
<tr>
|
|
|
<td class="td_info">是否三证合一</td>
|
|
|
<td class="td_user_info user_info address">
|
|
|
- <input style="margin-left: 0;" type="text" readonly="readonly" id="shi" value="是">
|
|
|
- <input type="text" readonly="readonly" id="fou" value="否">
|
|
|
+ <input style="margin-left: 0;cursor:pointer;" type="text" readonly="readonly" id="shi" value="是">
|
|
|
+ <input style="cursor:pointer;" type="text" readonly="readonly" id="fou" value="否">
|
|
|
<input type="text"style="display: none;" id="whether" value="{$userinfo['whether']}">
|
|
|
</td>
|
|
|
</tr>
|
|
|
@@ -130,7 +130,7 @@
|
|
|
<tr>
|
|
|
<td class="td_info"></td>
|
|
|
<td class="td_user_info user_info">
|
|
|
- <input type="submit" value="确认" style="width: 70px;">               <input type="button" id="cancel" value="取消" style="width: 70px;">
|
|
|
+ <input type="submit" value="确认" style="width: 70px;cursor:pointer;">               <input type="button" id="cancel" value="取消" style="width: 70px;cursor:pointer;">
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
@@ -142,14 +142,17 @@
|
|
|
if(document.getElementById("hidden").value != ''){
|
|
|
if(document.getElementById("hidden").value == document.getElementById("china").value){
|
|
|
document.getElementById("china").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("china").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("china").name = "area";
|
|
|
}
|
|
|
if(document.getElementById("hidden").value == document.getElementById("gangaotai").value){
|
|
|
document.getElementById("gangaotai").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("gangaotai").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("gangaotai").name = "area";
|
|
|
}
|
|
|
if(document.getElementById("hidden").value == document.getElementById("overseas").value){
|
|
|
document.getElementById("overseas").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("overseas").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("overseas").name = "area";
|
|
|
}
|
|
|
}
|
|
|
@@ -168,37 +171,50 @@
|
|
|
});
|
|
|
$("#china").click(function(){
|
|
|
document.getElementById("china").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("china").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("gangaotai").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("gangaotai").style.backgroundColor = "white";
|
|
|
document.getElementById("overseas").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("overseas").style.backgroundColor = "white";
|
|
|
document.getElementById("china").name = "area";
|
|
|
document.getElementById("gangaotai").name = "";
|
|
|
document.getElementById("overseas").name = "";
|
|
|
});
|
|
|
$("#gangaotai").click(function(){
|
|
|
document.getElementById("gangaotai").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("gangaotai").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("china").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("china").style.backgroundColor = "white";
|
|
|
document.getElementById("overseas").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("overseas").style.backgroundColor = "white";
|
|
|
document.getElementById("gangaotai").name = "area";
|
|
|
document.getElementById("china").name = "";
|
|
|
document.getElementById("overseas").name = "";
|
|
|
});
|
|
|
$("#overseas").click(function(){
|
|
|
document.getElementById("overseas").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("overseas").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("gangaotai").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("gangaotai").style.backgroundColor = "white";
|
|
|
document.getElementById("china").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("china").style.backgroundColor = "white";
|
|
|
document.getElementById("overseas").name = "area";
|
|
|
document.getElementById("gangaotai").name = "";
|
|
|
document.getElementById("china").name = "";
|
|
|
});
|
|
|
$("#shi").click(function(){
|
|
|
document.getElementById("shi").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("shi").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("fou").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("fou").style.backgroundColor = "white";
|
|
|
document.getElementById("shi").name = "whether";
|
|
|
document.getElementById("fou").name = "";
|
|
|
});
|
|
|
$("#fou").click(function(){
|
|
|
document.getElementById("fou").style.borderColor = "dodgerblue";
|
|
|
+ document.getElementById("fou").style.backgroundColor = "dodgerblue";
|
|
|
document.getElementById("shi").style.borderColor = "darkgrey";
|
|
|
+ document.getElementById("shi").style.backgroundColor = "white";
|
|
|
document.getElementById("fou").name = "whether";
|
|
|
document.getElementById("shi").name = "";
|
|
|
});
|